日期:2014-05-17 浏览次数:20733 次
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <html> <head> <title>验证码</title> <style type="text/css"> .animation-form{ /* -webkit-animation: animate-stripes 1s linear infinite; */ -webkit-transition:all 0.5s ease-in; -webkit-transform:rotate(0deg); } .animation-form:hover{ -webkit-transform:rotate(30deg); } </style> </head> <body> <div class="animation-form" style="background-color:red;width:100px;height:100px;"> </div> </body> </html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <html> <head> <title>验证码</title> <style type="text/css"> .animation-form{ -webkit-animation: animate-stripes 1s linear infinite; } @-webkit-keyframes animate-stripes { 0% {-webkit-transform: rotate(0deng);left:0;} 100% {-webkit-transform: rotate(180deng);left:50px} } </style> </head> <body> <div class="animation-form" style="background-color:red;width:100px;height:100px;position: absolute;"> </div> </body> </html>