1 Star 0 Fork 0

贺俊浩/HTML-CSS-JS

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
TD_1.html 1.22 KB
一键复制 编辑 原始数据 按行查看 历史
nougat2333 提交于 2020-09-23 16:04 . Create TD_1.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<script src="rem.js"></script>//rem750
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<style>
body,
html {
overflow: hidden;
}
#drag1 {
position: absolute;
top: 0;
left: 0;
height: 200%;
width: 100%;
background: url(img/beijing.png);//背景
background-size: 100% 100%;
}
</style>
<body>
<div id="drag1"></div>
</body>
<script>
var SY, MY, BY;
var hd1 = document.getElementById('drag1');
hd1.addEventListener('touchstart', function(e) {
MY = null;
SY = null;
BY = hd1.offsetTop;
SY = e.touches[0].clientY;
console.log(BY);
console.log(SY);
e.preventDefault()
});
hd1.addEventListener('touchmove', function(e) {
MY = e.touches[0].clientY - SY;
hd1.style.top = BY + MY + 'px';
console.log(BY);
e.preventDefault();
if (hd1.offsetTop > 0) {
hd1.style.top = 0 + 'px';
}
if (hd1.offsetTop < -600) {
hd1.style.top = -600 + 'px';
}
});
</script>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
HTML
1
https://gitee.com/NouFox/HTML-CSS-JS.git
git@gitee.com:NouFox/HTML-CSS-JS.git
NouFox
HTML-CSS-JS
HTML-CSS-JS
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385