index.html 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <!DOCTYPE html>
  2. <html lang="">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width,initial-scale=1.0">
  7. <script type="text/javascript" src="./js/jquery.js"></script>
  8. <link rel="icon" href="<%= BASE_URL %>favicon.ico">
  9. <title><%= htmlWebpackPlugin.options.title %></title>
  10. <style>
  11. /*修改滚动条样式*/
  12. div::-webkit-scrollbar{
  13. width:10px;
  14. height:10px;
  15. /**/
  16. }
  17. div::-webkit-scrollbar-track{
  18. background: rgb(239, 239, 239);
  19. border-radius:2px;
  20. }
  21. div::-webkit-scrollbar-thumb{
  22. background: #bfbfbf;
  23. border-radius:10px;
  24. }
  25. div::-webkit-scrollbar-thumb:hover{
  26. background: #333;
  27. }
  28. div::-webkit-scrollbar-corner{
  29. background: #179a16;
  30. }
  31. </style>
  32. </head>
  33. <body>
  34. <noscript>
  35. <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
  36. </noscript>
  37. <div id="app"></div>
  38. <!-- built files will be auto injected -->
  39. </body>
  40. </html>