0

我在 html 中有一个连续的图像滚动(选框)。我想创建一个选取框,当鼠标悬停事件激活时应该停止并且图像应该设置为其起始位置。在鼠标移出时,选框应该必须再次开始滚动。

我怎么能创造它?JQUERY中有什么方法吗?

4

1 回答 1

0

您没有在问题中提供太多信息,但从根本上讲,您可能希望将mouseenterandmouseleave事件挂在选框上。(jQuery 为原生不支持它们的浏览器提供了它们。)

$("selector for the marquee")
    .mouseenter(function() {
        // stop the marquee, set the element positions as you want them
    })
    .mouseleave(function() {
        // restart it
    });
于 2013-08-26T09:00:23.150 回答