我正在尝试使用背景图像制作一个安静的效果。我试图让它非常缓慢地向左移动,然后在看到整个图像后停止。
此刻图像根本不动。
<!DOCTYPE html>
<html>
<head>
<style>
body
{
width:100%;
height:100px;
top:0;
background-image:url('http://upload.wikimedia.org/wikipedia/commons/0/0c/Yercaud_scenery.jpg');
position:relative;
-webkit-animation:mymove 4s infinite; /* Safari and Chrome */
}
@-webkit-keyframes mymove /* Safari and Chrome */
{
0% {top:0px;left:-70px;}
25% {top:0px;left:-50px;}
75% {top:0px;left:30px;}
100% {top:0px;left:31px}
}
</style>
</head>
<body>
<p>here is some sample text</p>
</body>
</html>
任何帮助将不胜感激。我不一定只使用 css,但如果可能的话,我会更喜欢。