Common styles of CSS animation effects animation

Common styles of CSS animation effects animation

animation

Define an animation:

/*Set a keyframe to define the action performed at each step of the animation*/
@keyframes mybox{
            0%{transform: translate(0,0);}
            25%{transform: translate(200px,0);}
            50%{transform: translate(200px,200px);}
            75%{transform: translate(0,200px);}
            100%{transform: translate(0,0);}
        }
/*Reference keyframes and set the execution style of the animation*/
animation: mybox 5s 1s infinite;

Note:

1. Return to the initial position after the animation ends.
2. from->0% to ->100%

animation-name: the name of the animation (must exist)

animation-duration: the duration of the animation

animation-delay: specifies how long it takes for the animation effect to appear

animation-iteration-count: defines the number of times the animation is executed

The default value is: 1; unlimited times: infinite

animation-timing-function: defines the animation effect animation-fill-mode:

none: default value; the style takes effect after a delay;
backwards: The style takes effect before the delay;
forwards: After the animation ends, it stops at the end position;
both: has the characteristics of backwards and forwards;

Summarize

This is the end of this article about the commonly used styles of CSS animation effects. For more content about commonly used styles of CSS animation, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope that everyone will support 123WORDPRESS.COM in the future!

<<:  VUE render function usage and detailed explanation

>>:  zabbix custom monitoring nginx status implementation process

Recommend

Use of select, distinct, and limit in MySQL

Table of contents 1. Introduction 2. select 2.1 Q...

Detailed explanation of VUE Token's invalidation process

Table of contents Target Thought Analysis Code la...

mysql implements the operation of setting multiple primary keys

User table, ID number must be unique, mobile phon...

When should a website place ads?

I recently discussed "advertising" with...

Five practical tips for web form design

1. Mobile selection of form text input: In the te...

A brief talk about React Router's history

If you want to understand React Router, you shoul...

Baota Linux panel command list

Table of contents Install Pagoda Management Pagod...

A detailed tutorial on how to install Jenkins on Docker for beginners

Jenkins is an open source software project. It is...

Summary of the benefits of deploying MySQL delayed slaves

Preface The master-slave replication relationship...

How to install MySQL 8.0 and log in to MySQL on MacOS

Follow the official tutorial, download the instal...

HTML table markup tutorial (43): VALIGN attribute of the table header

In the vertical direction, you can set the alignm...

Mac+IDEA+Tomcat configuration steps

Table of contents 1. Download 2. Installation and...

How to write a picture as a background and a link (background picture plus link)

The picture is used as the background and the lin...

Teach you how to quickly install Nginx in CentOS7

Table of contents 1. Overview 2. Download the Ngi...

mysql obtains statistical data within a specified time period

mysql obtains statistical data within a specified...