index.html 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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,user-scalable=yes,initial-scale=0.1">
  7. <link rel="icon" href="<%= BASE_URL %>favicon.ico">
  8. <title>加载中......</title>
  9. <style>
  10. /*修改滚动条样式*/
  11. div::-webkit-scrollbar {
  12. width: 5px;
  13. height: 10px;
  14. }
  15. div::-webkit-scrollbar-track {
  16. background: rgb(239, 239, 239);
  17. border-radius: 2px;
  18. }
  19. div::-webkit-scrollbar-thumb {
  20. background: #bfbfbf;
  21. border-radius: 10px;
  22. }
  23. div::-webkit-scrollbar-thumb:hover {
  24. background: #333;
  25. }
  26. div::-webkit-scrollbar-corner {
  27. background: #179a16;
  28. }
  29. </style>
  30. </head>
  31. <body>
  32. <noscript>
  33. <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled.
  34. Please enable it to continue.</strong>
  35. </noscript>
  36. <div id="app"></div>
  37. <!-- built files will be auto injected -->
  38. </body>
  39. </html>