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;
ます 背景画像だけを移動できますか?
あなたの答えに感謝します。