我有一个简单的背景图像,它从左到右连续移动。除了firefox(仅测试11次)之外,所有浏览器都能很好地工作;
这是代码:
$(document).ready(function() {
animateClouds();
});
function animateClouds() {
$('#theclouds').animate ({
'background-position-x': '+=5000'
}, 100000, 'linear', function() {
animateClouds();
});
}
答案 0 :(得分:2)
CSS规范中没有background-position-x
属性。有些浏览器无论如何支持它; Firefox恰好不会。
答案 1 :(得分:1)
使用它可以解决这个问题。我自己用过它,效果很好: