Pure HTML+CSS to achieve Element loading effect

Pure HTML+CSS to achieve Element loading effect

This is the effect of the Element UI loading component. It looks cool. Let’s implement it!

analyze

The animation consists of two parts:

The blue arc stretches from a point to a circle, and then shrinks from the circle to a point.

The parent node of the circle rotates with the circle

Code
html

<svg viewBox="25 25 50 50" class="box">
    <circle cx="50" cy="50" r="20" fill="none" class="circle"></circle>
</svg>

CSS
Default Style

.box {
    height: 200px;
    width: 200px;
    background: wheat;
}
.box .circle {
    stroke-width: 2;
    stroke: #409eff;
    stroke-linecap: round;
}

Add animation effects

/* Rotation animation */
@keyframes rotate {
    to {
        transform: rotate(1turn)
    }
}
/* Arc animation */
/* 125 is the circumference of the circle */
@keyframes circle {
    0% {
 /* State 1: Point */
        stroke-dasharray: 1 125;
        stroke-dashoffset: 0;
    }
    50% {
 /* State 2: Circle */
        stroke-dasharray: 120, 125;
        stroke-dashoffset: 0;
    }
    to {
 /* State 3: Point (shrinking in the direction of rotation) */
        stroke-dasharray: 120 125;
        stroke-dashoffset: -125px;
    }
}
.box {
  /* ...same as above*/
  animation: rotate 2s linear infinite;
}
.circle {
  /* ...same as above*/
  animation: circle 2s infinite;
}

Finally, remove the background

Online code demo https://jsbin.com/yarufoy/edit?html,css,output

This is the end of this article about how to achieve Element loading effect with pure HTML+CSS. For more relevant content about how to achieve loading with HTML+CSS, please search previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future!

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

>>:  Detailed explanation of HTML basics (Part 1)

Recommend

Description of the hr tag in various browsers

Generally, we rarely meet HR, but once we do, it c...

Nginx dynamically forwards to upstream according to the path in the URL

In Nginx, there are some advanced scenarios where...

IDEA graphic tutorial on configuring Tomcat server and publishing web projects

1. After creating the web project, you now need t...

My CSS framework - base.css (reset browser default style)

Copy code The code is as follows: @charset "...

mysql 8.0.18 mgr installation and its switching function

1. System installation package yum -y install mak...

Detailed introduction to the MySQL installation tutorial under Windows

Table of contents 1. Some concepts you need to un...

React-Native environment setup and basic introduction

Environment Preparation 1. Environment Constructi...

Detailed explanation of Linux zabbix agent deployment and configuration methods

1. Install zabbix-agent on web01 Deploy zabbix wa...

Detailed explanation of MySql 5.7.17 free installation configuration tutorial

1. Download the mysql-5.7.17-winx64.zip installat...

Things to note when writing self-closing XHTML tags

The img tag in XHTML is so-called self-closing, w...

Use render function to encapsulate highly scalable components

need: In background management, there are often d...

How to modify the time zone and time in Ubuntu system

On a Linux computer, there are two times, one is ...

Summary of special processing statements of MySQL SQL statements (must read)

1. Update the entire table. If the value of a col...

Summary of how to use the MySQL authorization command grant

How to use the MySQL authorization command grant:...