类似于YouTube、Medium、知乎等网站使用的进度条插件 NProgress

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width,height=device-height">
  <title>NProgress</title>
  <script src='https://unpkg.com/nprogress@0.2.0/nprogress.js'></script>
  <link rel='stylesheet' href='https://unpkg.com/nprogress@0.2.0/nprogress.css'/>  
</head>

<body>
  <script>
    NProgress.start()
    setTimeout(function() {
      NProgress.done()
    }, 2000)
  </script>
</body>

</html>

https://github.com/rstacruz/nprogress

posted @ 2019-02-14 18:18  徐同保  阅读(261)  评论(0编辑  收藏  举报