Sample code for implementing the Olympic rings with pure HTML+CSS

Sample code for implementing the Olympic rings with pure HTML+CSS

Rendering

Code - Take the blue and yellow rings as an example

 <div class="container">
    <div class="ring blue"></div>
    <div class="ring yellow yellow1"></div>
    <div class="ring yellow yellow2"></div>
</div>
.ring {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: absolute;
    border-style: solid;
    border-width: 10px;
}

.blue {
    border-color: #0180C3;
    top: 0;
    left: 0;
    z-index: 0;
}

.yellow {
    border-color: #FEB131;
    left: 70px;
    top: 60px;
}

.yellow1 {
    /* On the blue ring */
    z-index: 1;
    /* Cutting circle */
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}


.yellow2 {
    /* Under the blue ring */
    z-index: -1;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
}

Interlacing effect of rings explained

Take the blue and yellow rings as an example:
With the blue ring as the basis, the yellow ring is cut into two parts, the first part is above the blue ring, and the second part is below the blue ring.

Once you have finished drawing the blue and yellow rings, you can move on to the black ring. This time the benchmark becomes a yellow ring, and the black ring needs to be cut into two parts. Then there are the green and red rings, the same principle.

Complete code

https://jsbin.com/duhubis/edit?html,css,output

This is the end of this article about the sample code for implementing the Olympic Five Rings with pure HTML+CSS. For more relevant content about implementing the Olympic Five Rings with HTML+CSS, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future!

<<:  HTML+CSS to implement the sample code of the navigation bar drop-down menu

>>:  Pure HTML+CSS to achieve Element loading effect

Recommend

Share some key interview questions about MySQL index

Preface An index is a data structure that sorts o...

Native js encapsulation seamless carousel function

Native js encapsulated seamless carousel plug-in,...

Use of Linux ipcs command

1. Command Introduction The ipcs command is used ...

CentOS 7 switching boot kernel and switching boot mode explanation

centos7 switch boot kernel Note: If necessary, it...

How to use CSS to center a box horizontally and vertically (8 methods)

Original code: center.html : <!DOCTYPE html>...

Bootstrap FileInput implements image upload function

This article example shares the specific code of ...

foreman ubuntu16 quick installation

Quickstart Guide The Foreman installer is a colle...

Pure js to achieve typewriter effect

This article example shares the specific code of ...

About front-end JavaScript ES6 details

Table of contents 1. Introduction 1.1 Babel Trans...

Vue realizes the sliding cross effect of the ball

This article example shares the specific code of ...

MySql 8.0.11 installation and configuration tutorial

Official website address: https://dev.mysql.com/d...

The One-Hand Rule of WEB2.0

<br />My previous article about CSS was not ...

Sample code for converting video using ffmpeg command line

Before starting the main text of this article, yo...

Realize map aggregation and scattering effects based on vue+openlayer

Table of contents Preface: Result: 1. Polymerizat...

CSS Viewport Units for Fast Layout

CSS Viewport units have been around for the past ...