zoukankan      html  css  js  c++  java
  • CSS3——齿轮转动

    HTML
     
    关键代码:
     1 div{
     2   -webkit-animation: xuanzhuan 5s linear;
     3    -webkit-animation-iteration-count: infinite;
     4 }
     5 
     6 @-webkit-keyframes xuanzhuan {
     7    from {
     8          -webkit-transform: rotateZ(0);
     9    }
    10 
    11    to {
    12          -webkit-transform: rotateZ(360deg);
    13    }
    14 }
     
     
     
     
     
    CSS
     
    JS
     
  • 相关阅读:
    2019暑假中山纪中集训游记
    pytest入门学习(1)
    学习makefile与autoconfig笔记,持续更新
    新手安装 hadoop、hive和hbase 笔记
    新装ubuntu 12.04 , 使用技巧
    JDK1.7 和 jetty配置教程
    python成长之路一
    IDM下载神器
    测试
    Hadoop命令
  • 原文地址:https://www.cnblogs.com/ccto/p/3047150.html
Copyright © 2011-2022 走看看