1. 首页
  2. 数据库
  3. 其它
  4. css3的动画特效之动画序列(animation)

css3的动画特效之动画序列(animation)

上传者: 2020-12-23 03:56:05上传 PDF文件 96.87KB 热度 19次
首先复习一下animation动画添加各种参数 (1)infinite参数,表示动画将无限循环。在速度曲线和播放次数之间还可以插入一个时间参数,用以设置动画延迟的时间。如希望使图标在1秒钟后再开始旋转,并旋转两次,代码如下 .close:hover::before{ -webkit-animation: spin 1s linear 1s 2; animation: spin 1s linear 1s 2; } (2)alternate参数。animation动画中加入反向播放参数alternate。在加入该参数后,动画将在偶数次数时反向播放动画。 .close:hover
用户评论