我们可以通过使用 css3 动画来移动背景图像而不是移动 div 吗?
例如:
div{
width:800px;
position:relative;
background:url(image) no-repeat;
border:1px solid red;
-webkit-animation: mov 5s infinate;
}
@-webkit-keyframes mov{
from{ top:0px left: 500px;}
to{ top:500px; left:500px;}
}
在这种情况下 div 将移动到left:500px;
我们可以只移动背景图像吗?
感谢您的回答。