开发工具
开发手册
千图首页
登录
注册
开发手册
HTML
CSS
JavaScript
编辑您的代码:
<!DOCTYPE html> <html> <head> <style> div { width:100px; height:100px; background:red; position:relative; animation:mymove 5s infinite; animation-delay:2s; /*Safari and Chrome*/ -webkit-animation:mymove 5s infinite; -webkit-animation-delay:2s; } @keyframes mymove { from {left:0px;} to {left:200px;} } @-webkit-keyframes mymove /*Safari and Chrome*/ { from {left:0px;} to {left:200px;} } </style> </head> <body> <p><strong>注释:</strong>Internet Explorer 9 以及更早的版本不支持 animation-delay 属性。</p> <div></div> </body> </html>
查看结果:
关于千图
|
赞助千图
|
千图首页
Copyright2014千图网 沪ICP备10011451号-6 用时:0.009秒
千图网提示
登录以后可以免费试用
登录
或
注册