これがjQueryでの私の試みです:
$(document).ready(function(){
$('#bg').animate({ backgroundPosition: '320px 0px'}, 10000, 'linear');
});
bgのCSSは次のとおりです。
#bg {
background: url('scribbles.png') repeat-x 320px 0px;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
HTMLは次のとおりです。
<div id="bg"></div>
背景画像をゆっくりと画面上で動かしたい。助言がありますか?
ありがとう!