如果鼠标悬停在元素上一段时间则显示弹出窗口

发布于 2024-10-16 11:45:34 字数 801 浏览 2 评论 0原文

我想知道当鼠标悬停在某个元素上一段时间时如何显示弹出窗口/提示框,例如伪代码:

if mouseover
    if hovered for more than 2 seconds
       --> show popup/tipbox
    else
       ---> cancel mouseover
else if mouseout
    --> reset timer/cancel mouseover

到目前为止我已经这样做了,但是如果我将鼠标悬停并且它不能有效工作快速移动鼠标,它仍然会显示弹出窗口/提示框。

$('a[rel=tip]').live('mouseover mouseout', function(e)
{
    if(e.type == 'mouseover')
    {
        var mouseTime = setTimeout(function()
        {
            $('.tipbox').slideDown('fast');
        }, 1000);
    }
    else if(e.type == 'mouseout')
    {
        if(mouseTime)
        {
            cancelTimeout(mouseTime);
            mouseTime = null;
            $('.tipbox').slideUp('fast');   
        }
    }
});

编辑:添加了赏金。

I'm wondering how to show a popup/tipbox when a mouse has been hovered over an element for a period of time, e.g. pseudo code:

if mouseover
    if hovered for more than 2 seconds
       --> show popup/tipbox
    else
       ---> cancel mouseover
else if mouseout
    --> reset timer/cancel mouseover

I've done this so far, but it doesn't work effectively, if I hover and move the mouse quickly, it will still show the popup/tipbox.

$('a[rel=tip]').live('mouseover mouseout', function(e)
{
    if(e.type == 'mouseover')
    {
        var mouseTime = setTimeout(function()
        {
            $('.tipbox').slideDown('fast');
        }, 1000);
    }
    else if(e.type == 'mouseout')
    {
        if(mouseTime)
        {
            cancelTimeout(mouseTime);
            mouseTime = null;
            $('.tipbox').slideUp('fast');   
        }
    }
});

EDIT: Bounty added.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

奈何桥上唱咆哮 2024-10-23 11:45:34

似乎对我有用:

HTML

<span id="someElem"> Hover me for 2 seconds! </span>

JS

var tooltipTimeout;
    
$("#someelem").hover(function()
{
    tooltipTimeout = setTimeout(showTooltip, 2000);
}, hideTooltip);
    
function showTooltip()
{
    var tooltip = $("<div id='tooltip' class='tooltip'>I'm the tooltip!</div>");
    tooltip.appendTo($("#someelem"));
}
    
function hideTooltip()
{
    clearTimeout(tooltipTimeout);
    $("#tooltip").fadeOut().remove();
}

<强>CSS

#someElem
{
    cursor: pointer;
}
    
.tooltip
{
    display: block;
    position: absolute;
    background-color: rgb(130, 150, 200);
    padding: 5px;
}

This seems to work for me:

HTML

<span id="someElem"> Hover me for 2 seconds! </span>

JS

var tooltipTimeout;
    
$("#someelem").hover(function()
{
    tooltipTimeout = setTimeout(showTooltip, 2000);
}, hideTooltip);
    
function showTooltip()
{
    var tooltip = $("<div id='tooltip' class='tooltip'>I'm the tooltip!</div>");
    tooltip.appendTo($("#someelem"));
}
    
function hideTooltip()
{
    clearTimeout(tooltipTimeout);
    $("#tooltip").fadeOut().remove();
}

CSS

#someElem
{
    cursor: pointer;
}
    
.tooltip
{
    display: block;
    position: absolute;
    background-color: rgb(130, 150, 200);
    padding: 5px;
}
蘑菇王子 2024-10-23 11:45:34

试试这个:

function show_tipbox (thelink,tipbox) { 
    var timer; 
    timer = setTimeout(function(){
        $(tipbox).stop(true, true).fadeIn('normal');
    }, 300); 
    $(thelink).mouseout(function(){ clearTimeout(timer); });
}

function hide_tipbox (tipbox) {
    $(tipbox).stop(true, true).fadeOut('normal');
}

html 代码应该是:

<a href="#" id="thelink" onmouseover="show_tipbox('#thelink','#tipbox');">The link</a>
<div id="tipbox" onmouseout="hide_tipbox('#tipbox');">Tipbox Content</div>

Try this:

function show_tipbox (thelink,tipbox) { 
    var timer; 
    timer = setTimeout(function(){
        $(tipbox).stop(true, true).fadeIn('normal');
    }, 300); 
    $(thelink).mouseout(function(){ clearTimeout(timer); });
}

function hide_tipbox (tipbox) {
    $(tipbox).stop(true, true).fadeOut('normal');
}

And the html code should be:

<a href="#" id="thelink" onmouseover="show_tipbox('#thelink','#tipbox');">The link</a>
<div id="tipbox" onmouseout="hide_tipbox('#tipbox');">Tipbox Content</div>
孤寂小茶 2024-10-23 11:45:34

你可以尝试 这个插件 - 它是由一本非常好的 jQuery 书籍的作者之一编写的,所以应该不错。这些演示看起来很有希望。

You could try This plugin - it's written by one of the authors of a very good jQuery book, so ought to be good. The demos look promising.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文