码迷,mamicode.com
首页 > 其他好文 > 详细

h5 特效

时间:2017-10-10 11:26:44      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:visible   orm   mil   lte   init   animation   city   attach   margin   

地址:http://www.cnblogs.com/sun927/p/5842852.html

 

几个别人总结的css3炫酷效果,有需要直接拿来用即可,包括以下几个效果:

1。悬浮时放大

2.悬浮时转一圈

3.自动不停转圈

4.颜色自动越来越浅

.four{animation:mymove linear 5s infinite;-webkit-animation:mymove linear 5s infinite; /*Safari and Chrome*/}
 
@keyframes mymove
{
    from {<br>          opacity:1;
        filter:Alpha(opacity=100);
        transform:scale(1);
        -webkit-transform:scale(1);
        -moz-transform:scale(1);
        -o-transform:scale(1);
        -ms-transform:scale(1);}
    to {<br>          opacity:0.1;
        filter:Alpha(opacity=10);
        transform:scale(1.1);
        -webkit-transform:scale(1.1);
        -moz-transform:scale(1.1);
        -o-transform:scale(1.1);
        -ms-transform:scale(1.1);}
}
@-webkit-keyframes mymove /*Safari and Chrome*/
{
    from {
          opacity:1;
      filter:Alpha(opacity=100);
      transform:scale(1);
      -webkit-transform:scale(1);
      -moz-transform:scale(1);
      -o-transform:scale(1);
      -ms-transform:scale(1);
     }
    to {
          opacity:0.1;
      filter:Alpha(opacity=10);
      transform:scale(1.1);
      -webkit-transform:scale(1.1);
      -moz-transform:scale(1.1);
      -o-transform:scale(1.1);
      -ms-transform:scale(1.1);
    }
}

h5 特效

标签:visible   orm   mil   lte   init   animation   city   attach   margin   

原文地址:http://www.cnblogs.com/gs97/p/7644365.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!