代码拉取完成,页面将自动刷新
<!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>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。