transtion animation

作者: 秋秋秋web | 来源:发表于2016-01-18 22:48 被阅读273次

1、@keyframes定义动画,以百分比来规定改变发生的时间,或者通过关键词 "from" 和 "to",等价于 0% 和 100%

     语法:@keyframes  animationname{keyframes-selector{css-styles;}}

               keyframes 名称 {动画时长百分比 {css-styles;}}

demo:

{

animation:mymove 5s infinite;

-moz-animation:mymove 5s infinite; /* Firefox */

-webkit-animation:mymove 5s infinite; /* Safari and Chrome */

-o-animation:mymove 5s infinite; /* Opera */

@keyframes mymove                                

                                                      //infinite无限循环,rainbow一次或者一周期

}

{  0%  {top:0px;}

  25%  {top:200px;}

  50%  {top:100px;}

  75%  {top:200px;}

  100% {top:0px;}    }                  // 时间段 { 对应时间所在位置 }

2、Transition(过渡)

  语法:transition : property duration timing-function delay;

           transition:该过渡属性名称  完成动画时间  速度效果曲线  何时开始 ;

transition-delay : 

transition:1s height, 1s width;  //都设置跟没有效果一样,单独设置有不一样的效果

timing-function:

3、浏览器前缀

目前,IE 10和Firefox(>= 16)支持没有前缀的animation,而chrome不支持,所以必须使用webkit前缀。

相关文章

  • transtion animation

    1、@keyframes定义动画,以百分比来规定改变发生的时间,或者通过关键词 "from" 和 "to",等价于...

  • css动画

    css有几个容易混淆的属性:animation,transtion,translate,transform ani...

  • 4 动画及组件

    vue-> 过渡(动画) (它的本质走的是css3: transtion ,animation) 组件 ...

  • css3

    css3中会忘记的主要是filter,transform,animation,transtion,box-shad...

  • CSS动画:transtion和animation

    transtion和animation的区别 transition是过渡,是样式值的变化过程,只有开始和结束。an...

  • transtion和animation的区别

    animation 可以用 name 设置动画的名称,用 duration 设置动画完成的周期,用 timing-...

  • Transtion

    transtion-property 过度属性 transtion-duration 过度时间 tr...

  • transition效果学习总结

    transtion这个效果是需要触发才会发现的效果 4个参数1、transtion-proprety 决定哪些因...

  • 过渡(transtion)

    一.过渡 transition-property指定属性名称 all 所有属性都将获得过渡效果(默认) attr ...

  • 前端训练营第九周学习总结

    动画 Animation @keyframes定义 animation: 使用 属性 The animation ...

网友评论

    本文标题:transtion animation

    本文链接:https://www.haomeiwen.com/subject/uxkkkttx.html