我找到了一个jquery字幕,我在我的网站上实现了它。我想知道在悬停功能上添加暂停的最佳方法是什么。由于选取框包含链接,我希望当用户将鼠标悬停在单击链接时暂停。
任何帮助或反馈都将不胜感激。
<script src="//cdn.jsdelivr.net/jquery.marquee/1.3.1/jquery.marquee.min.js"></script>
<script> $(document).ready(function() {
$("#marq").fadeIn();
$('.marquee').marquee({
//speed in milliseconds of the marquee
duration: 20000,
//gap in pixels between the tickers
gap: 50,
//time in milliseconds before the marquee will start animating
delayBeforeStart: 2000,
//'left' or 'right'
direction: 'left',
//true or false - should the marquee be duplicated to show an effect of continues flow
duplicated: true
});
});
</script>