index.html 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <!DOCTYPE html>
  2. <html>
  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,user-scalable=no">
  7. <link rel="icon" href="<%= BASE_URL %>favicon.ico">
  8. <link rel="stylesheet" href="https://at.alicdn.com/t/font_1590402_i2m9uvxo6ad.css">
  9. <title><%= webpackConfig.name %></title>
  10. <!-- <script src="./static/js/jquery.min.js"></script>-->
  11. <!--引入leaflet-->
  12. <link rel="stylesheet" href="https://unpkg.com/leaflet@1.5.1/dist/leaflet.css" />
  13. <script src="https://unpkg.com/leaflet@1.5.1/dist/leaflet.js"></script>
  14. <!--ckplayer直播在线播放器-->
  15. <script type="text/javascript" src="./static/ckplayer/ckplayer.min.js"></script>
  16. <script>
  17. (function(window, document) {
  18. function resize() {
  19. var ww = window.innerWidth
  20. if (ww > window.screen.width) {
  21. window.requestAnimationFrame(resize)
  22. } else {
  23. if (ww > 750) {
  24. ww = 750
  25. }
  26. document.documentElement.style.fontSize = ww * 100 / 750 + 'px'
  27. }
  28. }
  29. resize();
  30. window.addEventListener('resize', resize);
  31. window.addEventListener('pageshow', function (e) {
  32. if (e.persisted) {
  33. resize();
  34. }
  35. });
  36. })(window, document);
  37. </script>
  38. </head>
  39. <body>
  40. <div id="app"></div>
  41. <!-- built files will be auto injected -->
  42. </body>
  43. </html>