3 Star 86 Fork 3

jsfront/vue3-tiger-h5

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.html 951 Bytes
一键复制 编辑 原始数据 按行查看 历史
jikeytang 提交于 2022-10-27 14:51 . init
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<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 + Vue + TS</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>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/jsfront/vue3-tiger-h5.git
git@gitee.com:jsfront/vue3-tiger-h5.git
jsfront
vue3-tiger-h5
vue3-tiger-h5
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385