tour.html 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>湖南雷锋纪念馆</title>
  5. <meta
  6. name="viewport"
  7. content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0"
  8. />
  9. <meta name="apple-mobile-web-app-capable" content="yes" />
  10. <meta name="apple-mobile-web-app-status-bar-style" content="black" />
  11. <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
  12. <meta http-equiv="x-ua-compatible" content="IE=edge" />
  13. <style>
  14. @-ms-viewport {
  15. width: device-width;
  16. }
  17. @media only screen and (min-device-width: 800px) {
  18. html {
  19. overflow: hidden;
  20. }
  21. }
  22. html {
  23. height: 100%;
  24. }
  25. body {
  26. height: 100%;
  27. overflow: hidden;
  28. margin: 0;
  29. padding: 0;
  30. font-family: Arial, Helvetica, sans-serif;
  31. font-size: 16px;
  32. color: #ffffff;
  33. background-color: #000000;
  34. }
  35. </style>
  36. </head>
  37. <body>
  38. <script src="tour.js"></script>
  39. <div id="pano" style="width: 100%; height: 100%">
  40. <noscript
  41. ><table style="width: 100%; height: 100%">
  42. <tr style="vertical-align: middle">
  43. <td>
  44. <div style="text-align: center">
  45. ERROR:<br /><br />Javascript not activated<br /><br />
  46. </div>
  47. </td>
  48. </tr></table
  49. ></noscript>
  50. <script>
  51. var krpano = null;
  52. embedpano({
  53. swf: "tour.swf",
  54. xml: "tour.xml",
  55. target: "pano",
  56. html5: "auto",
  57. mobilescale: 1.0,
  58. passQueryParameters: true,
  59. onready: function (k) {
  60. krpano = k;
  61. },
  62. });
  63. </script>
  64. </div>
  65. <!-- <script>
  66. function sendPost(value) {
  67. var iframeWin = document.getElementById("pano").contentWindow;
  68. iframeWin.postMessage(value,'http://localhost:8081/#/panorama?id=start')
  69. }
  70. </script> -->
  71. </body>
  72. </html>