感谢您的支持,我会继续努力的!
打开微信扫一扫,即可进行扫码打赏哦
点我查看本站打赏源码!
Powered by RUNCODEX.COM,学的不仅是技术,更是梦想!!!
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>菜鸟教程(runcodex.com)</title>
<style>
div
{
width:100px;
height:100px;
background:red;
position:relative;
animation:mymove 5s infinite;
animation-timing-function:linear;
/* Safari and Chrome */
-webkit-animation:mymove 2s infinite;
-webkit-animation-timing-function:linear;
}
@keyframes mymove
from {left:0px;}
to {left:200px;}
@-webkit-keyframes mymove /* Safari and Chrome */
</style>
</head>
<body>
<p><strong>注意:</strong> animation-timing-function 属性不兼容 Internet Explorer 9 以及更早版本的浏览器.</p>
<div></div>
</body>
</html>
输入 JavaScript 代码……
xxxxxxxxxx
输入 CSS 代码……