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
     
  • 相关阅读:
    转 Android之Broadcast, BroadcastReceiver(广播)
    Android之“==”与equals区别
    Android之notificaction使用
    android service 学习
    Android之Menu.add()
    (转)Android生命周期
    Partial Method in VB.NET
    如何侦测机器上装的.net framework的版本
    Powersehll: match ,cmatch,imatch命令
    Office Tip(1) : Split the Screen
  • 原文地址:https://www.cnblogs.com/ccto/p/3047150.html
Copyright © 2011-2022 走看看