css过渡和动画

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css过渡和动画相关的知识,希望对你有一定的参考价值。

一、transition(过渡):

  1.规定使用属性的名称;

  2.规定时长;

  3.配合hover的使用。

    div{

       width:100px;

       height:50px;

       background:red;

       transition:width 5s linear 2s;

        }

     div:hover{

        width:1200px;

        height:200px;

        

            }

二、动画(animation):

  @keyframe规则用于创建动画。(必须要在代码前面加入浏览器前缀,实现兼容性)

  1.绑定选择器;

  2.动画名称;

  3.动画时长。

    div{

       width:100px;

        height:50px;

        background:red;

        border:1px soild black;

        position:relative;

          animation:myfirst 5s linear 2s infinite;

          }

      @keyframe myfirst{

        0% {backgroud:black; left:0px; top:0px;}

        25%{background:yellow;left:200px;top:0px;}

        50%{background:green;left:200px;top:200px;}

        75%{background:bule;left:0px;top:200px;}

        100%{background:red;left:0px;top:0px;}

                  }

以上是关于css过渡和动画的主要内容,如果未能解决你的问题,请参考以下文章

如何触发css3过渡动画

[ css 过渡和动画 transition animation ] 过渡和动画听课笔记记录

如何设置动画和过渡属性

CSS 过渡与 CSS 动画

CSS3:动画之间的平滑过渡:hover

八.CSS之animation(动画)