zoukankan      html  css  js  c++  java
  • h5 特效

    地址: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);
        }
    }
  • 相关阅读:
    python--多线程&多进程
    python--MyRequest请求模块封装
    python--面向对象
    python--异常处理
    python--sys.argv 运行python文件时获取参数
    python--搭建测试环境
    mac常用快捷键
    九、django通过forms对页面数据校验
    八、django后台管理
    七、django页面请求处理
  • 原文地址:https://www.cnblogs.com/gs97/p/7644365.html
Copyright © 2011-2022 走看看