我如何实现stackoverflow的悬停对话框?

时间:2009-04-17 03:34:51

标签: javascript jquery dialog popup

我在 中使用stackoverflow的单色“点击关闭”悬停对话框,当用户尝试投票并且未记录时会问候用户在错误地使用或使用该网站。任何想法Jeff如何和/或用什么技术来实现这些整洁的小设备?

编辑:我特别谈到SQUARE对话框,上面写着“点击关闭”。我知道如何在屏幕顶部实现矩形条。

2 个答案:

答案 0 :(得分:51)

虽然我的印象是他们使用了jQuery的UI对话框,但我不太确定了。但是,自己鞭打它并不困难。试试这段代码:

$('.showme').click(function() {
    $('.error-notification').remove();
    var $err = $('<div>').addClass('error-notification')
                         .html('<h2>Paolo is awesome</h2>(click on this box to close)')
                         .css('left', $(this).position().left);
    $(this).after($err);
    $err.fadeIn('fast');
});
$('.error-notification').live('click', function() {
    $(this).fadeOut('fast', function() { $(this).remove(); });
});

使用这些样式:

.error-notification {
    background-color:#AE0000;
    color:white;
    cursor:pointer;
    display: none;
    padding:15px;
    padding-top: 0;
    position:absolute;
    z-index:1;
    font-size: 100%;
}

.error-notification h2 {
    font-family:Trebuchet MS,Helvetica,sans-serif;
    font-size:140%;
    font-weight:bold;
    margin-bottom:7px;
}

click here了解它的实际效果。

但是,我认为您仍然需要稍微调整它以根据您使用它的情况给它正确的位置。我把它当作左边的位置,因为它适用于顶部,但我认为可能会出现一些情况。考虑到所有事情,这应该让你开始。如果你想要一个更强大的实现,你应该看看真正真棒的jQuery BeautyTips,并且可以实现这一点。

答案 1 :(得分:2)

您可以将jQuery库与jQuery UI结合使用来创建dialogs