[CSS] a comprehensive and systematic explanation study notes - Chapter VI CSS animations

A, CSS Animation Overview

Here Insert Picture Description
Here Insert Picture Description
Here Insert Picture Description

1.1, tween

Here Insert Picture Description

1.1.1、transition

//	1s之后再开始动画
transition-delay: 1s;

Here Insert Picture Description
If you want all of the converted, you can specify directly

transition: all 1s;

1.1.2、transition-timing-function

Here Insert Picture Description

1.1.3, the browser animation debugging tools

F12 to open the browser front-end debugging tool browser.
Here Insert Picture Description
On DevTools press Esc to bring up the animation debug panel.
Here Insert Picture Description

1.1.4, custom animation progress

Ceaser tools, animation progress
Here Insert Picture Description

1.2, keyframes animation

Here Insert Picture Description
Here Insert Picture Description
This figure is run in the definition of this section @keyframes. 0% and 100% can also be written as shown in FIG.
Here Insert Picture Description

1.3, frame by frame animation

Here Insert Picture Description
Here Insert Picture Description

1.4, face questions

Here Insert Picture Description
Here Insert Picture Description
Here Insert Picture Description
Here Insert Picture Description

Published 76 original articles · won praise 16 · views 20000 +

Guess you like

Origin blog.csdn.net/weixin_38657051/article/details/103343909