index.html 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <!DOCTYPE html>
  2. <html lang="zh">
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
  6. <meta name="theme-color" content="#000000" />
  7. <meta name="description" content="Web site created using create-react-app" />
  8. <link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
  9. <link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
  10. <script src="./myData/myData.js"></script>
  11. <script src="./myData/myDataEN.js"></script>
  12. <script src="./myData/jsmpeg.min.js"></script>
  13. <script src="./myData/f-video.js"></script>
  14. <style>
  15. @font-face {
  16. font-family: 'song';
  17. src: url('./myData/song.OTF');
  18. }
  19. .fontLoding {
  20. position: absolute;
  21. top: 0;
  22. left: 0;
  23. opacity: 0;
  24. pointer-events: none;
  25. font-family: 'song';
  26. }
  27. </style>
  28. <title>程哲碑</title>
  29. </head>
  30. <body>
  31. <noscript>You need to enable JavaScript to run this app.</noscript>
  32. <div id="root"></div>
  33. <div id="panoramic-root"></div>
  34. <!-- 一进页面就加载字体 -->
  35. <i class="fontLoding">123</i>
  36. </body>
  37. <script>
  38. window.showA7Back = function () {
  39. const back = document.getElementById('A7Back')
  40. back.style.display = 'block'
  41. back.style.pointerEvents = 'none'
  42. setTimeout(() => {
  43. back.style.pointerEvents = 'auto'
  44. }, 500)
  45. }
  46. window.hideA7Back = function () {
  47. document.getElementById('A7Back').style.display = 'none'
  48. }
  49. </script>
  50. <script src="./echarts-v5.4.3.js"></script>
  51. <!-- <script>
  52. window.onload = function () {
  53. var script = document.createElement('script')
  54. script.src = 'https://cdn.bootcss.com/eruda/1.5.4/eruda.min.js'
  55. document.body.appendChild(script)
  56. script.onload = function () {
  57. eruda.init()
  58. }
  59. }
  60. </script> -->
  61. </html>