安科网
源代码:
点击运行
<html><head> <style> div { width: 100px; height: 100px; background: black; position: relative; -webkit-animation: mymove 3s; /* Chrome, Safari, Opera */ -webkit-animation-iteration-count: 2; /* Chrome, Safari, Opera */ -webkit-animation-fill-mode: both; /* Chrome, Safari, Opera */ animation: mymove 3s; animation-iteration-count: 2; animation-fill-mode: forwards; } @-webkit-keyframes mymove { from {top: 0px;} to {top: 200px;} } @keyframes mymove { from {top: 0px;} to {top: 200px;} } </style> </head> <body> <div></div> </body> </html>
运行结果
Copyright © 2013 - 2019 Ancii.com All Rights Reserved
京ICP备18063983号-5
京公网安备11010802014868号