认识CSS之animation属性

1.animation 属性是一个简写属性,用于设置六个动画属性:

animation-name
animation-duration
animation-timing-function
animation-delay
animation-iteration-count
animation-direction
    animation: name duration timing-function delay iteration-count direction;

2.个属性详解

  1. animation-name 属性为 @keyframes 动画规定名称。
    在这里插入图片描述
    注:http://www.w3school.com.cn/cssref/pr_keyframes.asp
    @keyframes 学习网站
  2. animation-duration规定动画的持续时间
  3. animation-timing-function:规定速度曲线
  4. animation-delay:规定动画等待的时间
  5. animation-iteration-count:规定动画轮播的次数
  6. animation-direction

猜你喜欢

转载自blog.csdn.net/qq_36836277/article/details/88788209
今日推荐