我在html中有一个连续的图像滚动(字幕)。我想创建一个选取框,当鼠标悬停在事件上并且图像应该设置为其起始位置时应该停止。鼠标移开时,选取框必须再次开始滚动。
我怎么能创造它?在JQUERY有什么方法吗?
答案 0 :(得分:0)
您的问题中没有提供太多信息,但从根本上说,您可能希望将mouseenter
和mouseleave
事件挂钩到选框上。 (jQuery为那些本身不支持它们的浏览器提供它们。)
$("selector for the marquee")
.mouseenter(function() {
// stop the marquee, set the element positions as you want them
})
.mouseleave(function() {
// restart it
});