mirror of
				https://github.com/sunniejs/vue-h5-template.git
				synced 2025-10-31 07:42:10 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			43 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="en">
 | |
|   <head>
 | |
|     <meta charset="UTF-8" />
 | |
|     <link rel="icon" href="/favicon.ico" />
 | |
|     <meta
 | |
|       name="viewport"
 | |
|       content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0,viewport-fit=cover"
 | |
|     />
 | |
|     <title>Vite App</title>
 | |
|   </head>
 | |
|   <body>
 | |
|     <div id="app"></div>
 | |
|     <script type="module" src="/src/main.ts"></script>
 | |
|     <script>
 | |
|       document.addEventListener('touchstart', function (event) {
 | |
|         if (event.touches.length > 1) {
 | |
|           event.preventDefault();
 | |
|         }
 | |
|       });
 | |
| 
 | |
|       var lastTouchEnd = 0;
 | |
| 
 | |
|       document.addEventListener(
 | |
|         'touchend',
 | |
|         function (event) {
 | |
|           var now = new Date().getTime();
 | |
|           if (now - lastTouchEnd <= 300) {
 | |
|             event.preventDefault();
 | |
|           }
 | |
| 
 | |
|           lastTouchEnd = now;
 | |
|         },
 | |
|         false
 | |
|       );
 | |
| 
 | |
|       document.addEventListener('gesturestart', function (event) {
 | |
|         event.preventDefault();
 | |
|       });
 | |
|     </script>
 | |
|   </body>
 | |
| </html>
 |