css CSS动画https://css-tricks.com/almanac/properties/a/animation/

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css CSS动画https://css-tricks.com/almanac/properties/a/animation/相关的知识,希望对你有一定的参考价值。

.myClass {
    /*-- ADD THE BELOW TO SPECIFY WHAT KEYFRAME ANIMATION TO USE--*/
     animation:myAnimation 4s infinite;
    -webkit-animation:myAnimation 4s infinite; 
}

/*------------------------------*/
/*-- YOU CAN USE ANY CSS HERE --*/
/*------------------------------*/

@keyframes myAnimation{
    0%    {background:#BBBD96;}
    25%   {background:#fff;}
    50%   {background:#BBBD96;}
    75%   {background:#fff;}
    100%  {background:#BBBD96;}
}

@-webkit-keyframes myAnimation {
    0%   {padding-top:5px;}
    25%  {padding-top:5px;}
    50%  {padding-top:15px;}
    75%  {padding-top:5px;}
    100% {padding-top:5px;}  
}

以上是关于css CSS动画https://css-tricks.com/almanac/properties/a/animation/的主要内容,如果未能解决你的问题,请参考以下文章

如何触发css3过渡动画

点击播放 css3 动画

css动画集锦

css3动画使用

如何使用js捕获css3动画

scss [css:加载动画] css关键帧动画示例。 #css #sass