CSS3过渡和动画

2017-02-18  本文已影响0人  盖被吹空调

1.transition过渡

transition: 1s height, 1s 1s width;
// 上面代码指定,width在1秒之后再开始变化,也就是延迟(delay)1秒

语法

// 完整写法
transition: 1s 1s height linear;
// 常用写法
transition: 1s;

注意transition一般加在原始元素上,不要加在hover,active等状态上,不然只针对某种状态。

2.animation动画

定义动画

@keyframes rainbow {
  0% { background: #c00; }
  50% { background: orange; }
  100% { background: yellowgreen; }
}
// 相当于
@keyframes rainbow {
  from { background: #c00 }
  50% { background: orange }
  to { background: yellowgreen }
}
@keyframes rainbow {
  50% { background: orange }
  to { background: yellowgreen }
}

@keyframes rainbow {
  to { background: yellowgreen }
}
@keyframes pound {
  from,to { transform: none; }
  50% { transform: scale(1.2); }
}

动画参数

动画语法

div:hover {
  animation: 1s 1s rainbow linear 3 forwards normal;
}
// 相当于
div:hover {
  animation-name: rainbow;
// 动画名称
  animation-duration: 1s;
// 持续时间
  animation-timing-function: linear;
// 动画状态
  animation-delay: 1s;
// 动画延迟
  animation-fill-mode:forwards;
// 动画结束状态
  animation-direction: normal;
// 动画循环方式
  animation-iteration-count: 3;
// 动画循环次数,设为infinite则为无限循环
}

steps函数

用于实现逐帧动画

div:hover {
 animation: 10s rainbow infinite steps(10,start);
}
动画将被分成10帧来播放,而不是平滑过渡。第二个参数默认为end,可设置为start。

效果参照

动画暂停

animation-play-state

div {
    animation: spin 1s linear infinite;
    animation-play-state: paused;
}

div:hover {
  animation-play-state: running;
}
上一篇下一篇

猜你喜欢

热点阅读