Pnotify プラグインの使用 http://sciactive.com/pnotify/
画面の左下隅に再配置して、連続したメニューを押し上げようとしています..
ポジショニングは問題ではありませんが、通知機能の方向はすべて互いに重なり合っています (最新の通知のみが表示され、残りはその後ろにあります)
コードは単純であるはずですが、
var stack_bottomleft = {"dir1": "up", "dir2": "up", "push": "top"};
new PNotify({
title: "Title",
type: "Success",
text: "My Message 1",
animation: "fade",
animate_speed: 'fast',
addclass: "stack-bottomleft",
stack: stack_bottomleft
});
new PNotify({
title: "Title",
type: "Success",
text: "My Message 2",
animation: "fade",
animate_speed: 'fast',
addclass: "stack-bottomleft",
stack: stack_bottomleft
});
new PNotify({
title: "Title",
type: "Success",
text: "My Message 3",
animation: "fade",
animate_speed: 'fast',
addclass: "stack-bottomleft",
stack: stack_bottomleft
});
おそらくバグ?