0

で 2 つの通知を次々に表示しようとしていますPnotifyが、問題があります。2 番目の通知は常に最初の通知と同じ高さになります。そのため、2 番目の通知が最初の通知よりも大きい場合、通知コンテナーに収まりません。 間違ったサイズの通知

これはいくつかのテストのフィドルです(外部リソースの原因で実行できるかどうかはわかりません):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",
});
4

0 に答える 0