jQuery:弹出像MSN Messenger

时间:2011-09-03 16:50:26

标签: jquery jquery-ui

你知道jQuery中的弹出窗口就像MSN Messenger的弹出窗口一样吗? 我想在页面的右边显示一条消息,例如。

非常感谢

2 个答案:

答案 0 :(得分:3)

以下是我使用jQuery UI Dialog提出的建议。

标记:

<div id="dialog" title="New Message!" >Hi, How are you?</div>
<button type="button">Check Messages</button>

jQuery的:

$("#dialog").dialog({
    height: 120,
    width: 10,
    draggable: false,
    position: ['right', 'bottom'],
    autoOpen: false,
    show: {
        effect: 'slide',
        direction: 'up',
        duration: 300
    }
});
$(':button').click(function() {
    $('#dialog').dialog("close").dialog('open');
});

习惯jsFiddle demo link

答案 1 :(得分:0)