index.html 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no"/>
  6. <title>home</title>
  7. <!-- <link rel="shortcut icon" href=./favicon.ico type=image/x-icon>-->
  8. <link rel="shortcut icon" href=./favicons.ico type=image/x-icon>
  9. <link href="static/css/public1.css" rel="stylesheet">
  10. <script>
  11. // 禁用缩放
  12. function addMeta() {
  13. // $('head').append('<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />');
  14. }
  15. setTimeout(addMeta, 3000);
  16. // 禁用双指放大
  17. document.documentElement.addEventListener('touchstart', function (event) {
  18. if (event.touches.length > 1) {
  19. event.preventDefault();
  20. }
  21. }, {
  22. passive: false
  23. });
  24. // 禁用双击放大
  25. var lastTouchEnd = 0;
  26. document.documentElement.addEventListener('touchend', function (event) {
  27. var now = Date.now();
  28. if (now - lastTouchEnd <= 300) {
  29. event.preventDefault();
  30. }
  31. lastTouchEnd = now;
  32. }, {
  33. passive: false
  34. });
  35. </script>
  36. </head>
  37. <body style="height: 100%; position: absolute; width: 100%;">
  38. <div id="app"></div>
  39. <!-- built files will be auto injected -->
  40. </body>
  41. </html>