1
<div id="animate" style="position: fixed; top: 150px; right: -1000px; width: 100%;height: 300px;"><A HREF="http://www.example.nl"><img src="http://www.example.nl/img/test.png"></a></div>
<script>
 $('#animate').animate({
right: '2000px',
}, 50000, function() {
// Animation complete.
});
</script>

这个脚本的问题是,如果我在 Chrome 中运行它,它会从右向左滑动。但是,一旦我想在 FireFox 中运行它,他就冻僵了,根本不动。

感谢正手

4

1 回答 1

1

设置#animateposition: absolute;这应该可以解决您的问题!

编辑:我提供了一个FIDDLE在 Firefox 21 上运行良好。

于 2013-06-13T11:16:41.850 回答