本文介绍了jQuery新闻行情循环的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
下面是我的Jquery新闻代码.我想循环播放.这样新闻代码不会停止并且会连续移动.
Below is my Jquery news ticker.I want to loop it.so that news ticker will not stop and it moves continously.
<script type="text/javascript">
$(function () {
$("#ticker").animate({ "left": "-420px" }, 1000, 'linear');
});
});
</script>
推荐答案
类似这样的东西
function ticker() {
$(".ticker").animate({
"right": parseInt($('.ticker').css('right')) + 20 + 'px'
}, 1000, 'linear', ticker);
}
ticker()
这篇关于jQuery新闻行情循环的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!