浅谈html5标签css3的常用样式

2020-04-21 07:09:44易采站长站整理

            }   
            25%{   
                background-color: orange;width: 100px;height: 100px;transform: rotate(-90deg);   
            }   
            50%{   
                background-color: yellow;width: 60px;height: 60px;transform: none;   
            }   
            75%{   
                background-color: green;width: 120px;height: 120px;transform: none;   
            }   
            100%{   
                background-color: blue;width: 200px;height: 200px;transform: rotate(360deg);   
            }   
        }   
        .kt{   
            animation:key 1s;   
           /* animation-iteration-count: infinite;*//*无限循环*/  
            background-color: yellow;   
            width: 200px;height: 200px;   
  
        }   
  
 </style>   
  
<div class="kt t5"></div>  

以上就是小编为大家带来的浅谈html5标签css3的常用样式全部内容了,希望大家多多支持软件开发网~