index.html 1.3 KB

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