index.html 2.1 KB

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