纯js超酷消息提示框插件notice.js
源码介绍
notice.js是一款纯js超酷消息提示框插件。notice.js为纯js编写,没有任何依赖文件。通过它可以在页面上制作出漂亮的toast消息通知框效果。该js消息提示框插件的特点还有: 可以通过npm或bower来安装notice.js插件。 在页面中引入noticejs.css和noticejs.js文件。 notice.js消息提示框插件最基本的用法如下: 你也可以结合animate.css来为消息通知框添加炫酷的CSS3动画效果。 在页面中引入animate.css文件。 然后在配置参数中设置 notice.js消息提示框插件的github地址为:https://github.com/toolkito/notice.js简要教程
安装
bower install notice.js --save
npm install notice.js --save
使用方法
<link href="dist/noticejs.css" rel="stylesheet" type="text/css">
<script src="dist/noticejs.js"></script>
初始化插件
new NoticeJs({
text: 'Notification message',
position: 'topLeft',
}).show();
<link href="css/animate.css" rel="stylesheet" type="text/css">
animation
参数:
new NoticeJs({
text: 'Notification message',
position: 'topLeft',
animation: {
open: 'animated bounceInRight',
close: 'animated bounceOutLeft'
}
}).show();
本站资源均来自互联网,仅供研究学习,禁止违法使用和商用,产生法律纠纷本站概不负责!如果侵犯了您的权益请与我们联系!
转载请注明出处: 免费源码网-免费的源码资源网站 » 纯js超酷消息提示框插件notice.js
发表评论 取消回复