Sample code for CSS dynamic loading bar effect

Sample code for CSS dynamic loading bar effect

Using the knowledge of CSS variables, I will directly post the code and the comments I added

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Show a CSS dynamic loading bar</title>
    <style>
      /* Using CSS variables */
      .flex {
        display: flex;
        list-style: none;
        /* Set the li elements to be arranged horizontally */
      }
 
      .loading {
        width: 200px;
        height: 200px;
      }
 
      .loading>li {
        /* We define a CSS variable for each inline element of the li element -- line-index has different sizes*/
        /* At this time, set an animation delay variable--time after calculation calc */
        --time: calc((var(--line-index) - 1) * 200ms);
        border-radius: 3px;
        width: 6px;
        height: 30px;
        background-color: #f66;
        /* The animations are all the same, but they start at different times, which results in this effect*/
        animation: beat 1.5s ease-in-out var(--time) infinite;
 
      }
 
      .loading>li+li {
        margin-left: 5px;
      }
 
      @keyframes beat {
 
        0%,
        100% {
          transform: scaleY(1);
        }
 
        50% {
          transform: scaleY(.5);
        }
      }
    </style>
  </head>
  <body>
    <ul class="loading flex">
      <li style="--line-index: 1;"></li>
      <li style="--line-index: 2;"></li>
      <li style="--line-index: 3;"></li>
      <li style="--line-index: 4;"></li>
      <li style="--line-index: 5;"></li>
      <li style="--line-index: 6;"></li>
    </ul>
  </body>
</html>

See the effect

This is the end of this article about the CSS dynamic loading bar source code. For more relevant CSS dynamic loading bar content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

<<:  Summary of several APIs or tips in HTML5 that cannot be missed

>>:  Several ways to schedule backup of MySQL database (comprehensive)

Recommend

About nginx to implement jira reverse proxy

Summary: Configure nginx reverse proxy jira and i...

Stealing data using CSS in Firefox

0x00 Introduction A few months ago, I found a vul...

Gearman + MySQL to achieve persistence operation example

This article uses the gearman+mysql method to imp...

Six tips to increase web page loading speed

Secondly, the ranking of keywords is also related ...

Implementing WeChat tap animation effect based on CSS3 animation attribute

Seeing the recent popular WeChat tap function, I ...

Examples of using MySQL pessimistic locking and optimistic locking

Pessimistic Lock Pessimistic lock, considers the ...

MySQL 5.7.13 installation and configuration method graphic tutorial on Mac

MySQL 5.7.13 installation tutorial for Mac, very ...

How to set up automatic daily database backup in Linux

This article takes Centos7.6 system and Oracle11g...

Vue practice of preventing multiple clicks

Generally, click events will be divided into diff...

The process of building lamp architecture through docker container

Table of contents 1. Pull the centos image 2. Bui...

Node and Python two-way communication implementation code

Table of contents Process Communication Bidirecti...

express project file directory description and detailed function description

app.js: startup file, or entry file package.json:...

How is MySQL transaction isolation achieved?

Table of contents Concurrent scenarios Write-Writ...

How to solve the problem that Seata cannot use MySQL 8 version

Possible reasons: The main reason why Seata does ...