我在此试图 j:
$(document).ready(function(){
$( #bg ).animate({ backgroundPosition: 320px 0px }, 10000, linear );
});
The CSS for bg:
#bg {
background: url( scribbles.png ) repeat-x 320px 0px;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
页: 1
<div id="bg"></div>
我希望背景形象能够慢慢地跨越屏幕。 任何建议?
感谢!