Pure CSS code to achieve flow and dynamic line effects

Pure CSS code to achieve flow and dynamic line effects

Ideas:
An outer box sets the background; an inner box sets the width and height of the background, and sets animate to make the box move

demo:

CSS part:

@keyframes mymove {
  from{left:0px;}
  to{left:70px;}
}
.father{
background: #748096;
border-radius:5px;
position: relative;
top: 70px;
left: -5px;
}

.moveson {
width:20px;
height:8px;
background:#a0e80c;
border-radius: 5px;
animation:mymove 2s linear infinite;
position:relative;
}

HTML part:

<div class="father">
     <div class="moveson"></div>
</ediv>

Summarize

This concludes this article about how to use pure CSS to achieve flow and dynamic line effects. For more information about how to use CSS to achieve flow and dynamic line effects, please search previous articles on 123WORDPRESS.COM or continue browsing the related articles below. I hope you will support 123WORDPRESS.COM in the future!

<<:  Summary of methods to include file contents in HTML files

>>:  Javascript Virtual DOM Detailed Explanation

Recommend

Teach you how to deploy Vue project with Docker

1.Write in front: As a lightweight virtualization...

Teach you 10 ways to center horizontally and vertically in CSS (summary)

A must-have for interviews, you will definitely u...

Docker installation and configuration steps for Redis image

Table of contents Preface environment Install Cre...

10 Tips for Mobile App User Interface Design

Tip 1: Stay focused The best mobile apps focus on...

12 types of component communications in Vue2

Table of contents 1. props 2..sync 3.v-model 4.re...

Introduction to using MySQL commands to create, delete, and query indexes

MySQL database tables can create, view, rebuild a...

Detailed explanation of the usage of compose function and pipe function in JS

Table of contents compose function Array.prototyp...

Analysis of slow insert cases caused by large transactions in MySQL

【question】 The INSERT statement is one of the mos...

Docker practice: Python application containerization

1. Introduction Containers use a sandbox mechanis...

JS realizes the front-end paging effect

This article example shares the specific code of ...

Detailed explanation of replace into example in mysql

Detailed explanation of replace into example in m...

A performance bug about MySQL partition tables

Table of contents 2. Stack analysis using pt-pmap...

MySQL Installer Community 5.7.16 installation detailed tutorial

This article records the detailed tutorial of MyS...

jQuery realizes the shuttle box function

This article example shares the specific code of ...