NProgress是基於jquery的,且版本要 >1.8 。這篇文章主要介紹了NProgress.js載入進度外掛的簡單使用方法,需要的朋友可以參考下
#NProgress.js
說明:
NProgress是基於jquery的,且版本要>1.8
下載位址:
https://github.com/rstacruz/nprogress https://github.com/rstacruz/nprogress#」 #」 #
NProgress.start() — 启动进度条 NProgress.set(0.4) — 将进度设置到具体的百分比位置 NProgress.inc() — 少量增加进度 NProgress.done() — 将进度条标为完成状态
使用步驟:
1. 引入
<link rel="stylesheet" type="text/css" href="css/NProgress.css" rel="external nofollow" > <script src="js/NProgress.js" type="text/javascript"></script><br>//还有jquery要之前引入进来
<em id="__mceDel"><script> $(function() { NProgress.start(); $(window).load(function() { NProgress.done(); }); </script> </em>
<script> $(window).ajaxStart(function () { NProgress.start(); }); $(window).ajaxStop(function () { NProgress.done(); }); </script> //技巧总结 此方法挂在window上 是为了监听项目中所有的ajax请求 //ajax事件 可参考 jquery 文档 http://jquery.cuishifeng.cn/
在nodejs express環境中如何將建立多人聊天室
以上是在jQuery中有關NProgress.js載入進度外掛程式使用方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!