index.html 1.2 KB

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