ブートストラップ通知v3.1.5
新しいMaterial Dashboard Proの通知は新しくてきれいに見えます。彼らはナビゲーションバーとうまく行きます。
あなたがそれらのために特別なアニメーションを追加したい場合は、Bootstrap Notifyと呼ばれるサードパーティのプラグインを統合しました。友人のRobert McIntoshが素晴らしい仕事をしました。あなたがコード化された例を見たいならば、あなたはそれを以下で見ることができます。
詳しくは** [完全なドキュメント](https://github.com/mouse0270/bootstrap-notify){:target = “_blank”}をご覧ください。**
通知スタイル
<button class="btn btn-primary" onclick="md.showNotification('top','right')">Top Right Notification</button>
function showNotification(from, align){
$.notify({
icon: "add_alert",
message: "Welcome to <b>Material Dashboard Pro</b> - a beautiful freebie for every web developer."
},{
type: 'success',
timer: 4000,
placement: {
from: from,
align: align
}
});
}