具有各种大小的多个Pnotify通知

时间:2015-04-17 14:16:59

标签: javascript twitter-bootstrap pnotify

我尝试使用Pnotify一个接一个地显示2个通知,但我遇到了问题:第二个通知的高度始终与第一个相同。因此,如果第二个通知大于第一个通知,则它不适合通知容器: Notifications with wrong sizes

这里有一些测试(我不确定你是否能够运行外部资源):https://jsfiddle.net/Alarid/y8b8pdcj/1/

代码:

new PNotify({
    title: 'Information',
    text: "Lorem ipsum dolor sit amet",
    type: 'warning',
    nonblock: {
        nonblock: true,
        nonblock_opacity: .2
    },
    styling: "bootstrap3",
    delay: 3000,
    addclass: "stack-bottomright",
});

new PNotify({
    title: 'Information',
    text: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque sed erat eget odio auctor rutrum. Morbi non est eu risus pharetra varius. Morbi lorem neque",
    type: 'success',
    nonblock: {
        nonblock: true,
        nonblock_opacity: .2
    },
    styling: "bootstrap3",
    delay: 3000,
    addclass: "stack-bottomright",
});

0 个答案:

没有答案