@keyframes规则

1. 定义:

@keyframes animationname {keyframes-selector {css-styles;}}

2. 实例:

 1 /* 动画代码 */
 2 @keyframes example {
 3   from {background-color: red;}
 4   to {background-color: yellow;}
 5 }
 6 
 7 /* 向此元素应用动画效果 */
 8 div {
 9   width: 100px;
10   height: 100px;
11   background-color: red;
12   animation-name: example;
13   animation-duration: 4s;
14 }

 

上一篇:Spring boot开发小而美的个人博客-页面集成插件-博客详情页2


下一篇:Objective-C 的动态提示和技巧