Notificationjq.js 是使用css3和javascript来创建windows8风格通知的 jQuery插件。它是一个可完全定制的插件,可以用在网站中创建重要的通知。适用于 InternetExplorer,GoogleChrome,MozillaFirefox,Safari和MobileBrowsers。
代码示例:
<script src="//code.jquery.com/jquery-1.7.1.js"></script><script src="~/Scripts/Notificationjq.js"></script><div id="divProgress"></div><script> $.notify({ text: " Hello from technoplugin.com!!" }); </script><script src="//code.jquery.com/jquery-1.7.1.js"></script> /*定制部分*/<script src="~/Scripts/Notificationjq.js"></script><div id="divProgress"></div><script> $.notify({ text: "Hello from technoplugin.com!!",//Text to be displayed in notification thumbSrc: "Images/guest.png",//Image source for thumbnail image background: "#cecece",//Background colour of notification fontColor: "black",//Font colour of text fontSize: "16px",//Font size of text autoClose: false//Set false to keep notification on the screen unless closed manually }); </script>
评论