纯JavaScript基于notie.js插件实现消息提示特效

前端之家收集整理的这篇文章主要介绍了纯JavaScript基于notie.js插件实现消息提示特效前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

本文实例介绍了纯JavaScript实现消息提示特效是一款基于notie.js插件实现的可以制作Alert提示框,确认框和带输入的消息框,分享给大家供大家参考,具体内容如下

效果图:

实现的代码HTML代码






<span>Test notie with these buttons:</span> <br> <button onclick="success();"&gt;Success</button> <button onclick="warning();"&gt;Warning</button> <button onclick="error();"&gt;Error</button><br> <button onclick="info();"&gt;Information</button> <button onclick="confirm();"&gt;Confirm</button> <button onclick="input();"&gt;Input</button> <br> </div> </div>

js代码

function warning() { notie.alert(2,'Warning<br><b>with</b><br><i>HTML</i><br><u>included.</u>',2); } function error() { notie.alert(3,'Error.',2); } function info() { notie.alert(4,'Information.',2); } function confirm() { notie.confirm('Are you sure you want to do that?<br><b>That\'s a bold move...</b>','Yes','Cancel',function () { notie.alert(1,'Good choice!',2); }); } function input() { notie.input('Please enter your email address:','Submit','email','name@example.com',function (value_entered) { notie.alert(1,'You entered: ' + value_entered,2); }); }</pre>

希望本文所述对大家学习javascript程序设计有所帮助。

原文链接:https://www.f2er.com/js/50506.html

猜你在找的JavaScript相关文章