引导 通知
新的Material Dashboard Pro通知看起来清新干净。他们使用导航栏很棒。
如果你想为它们使用添加特殊动画,我们集成了一个名为Bootstrap Notify的第三方插件。外出的朋友罗伯特麦金托什做得很好。如果您想查看编码示例,可以在下面看到。
有关更多信息,请查看[完整文档](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
}
});
}