当前位置:首页 > javascript > 正文内容

手机端触屏手指滑动方向

自由小鸟7年前 (2018-06-18)javascript2751

工作中写过的一个功能

<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>手机端触屏手指滑动方向</title>
<meta content="width=device-width,initial-scale=1.0,minimum-scale=1.0,user-scalable=no,maximum-scale=1.0" id="viewport" name="viewport">
<script type="text/javascript">
var touch_screen = {
//方向
direction: {
currntY: 0,
lastY: 0,
direction: "no",
 
start: function() {
var self = this,
obj = self._object;
obj.addEventListener('touchstart', function(e) {
self.move();
}, false);
obj.addEventListener('touchend', function(e) {
self.move();
lastY = document.body.scrollTop || document.documentElement.scrollTop;
}, false);
},
//拖动滑动时
move: function() {
var self = this;
if(lastY='defined'){
var lastY=document.body.scrollTop || document.documentElement.scrollTop;
}
self._object.addEventListener('touchmove', function(e) {
currntY = document.body.scrollTop || document.documentElement.scrollTop;
 
var direction =  currntY - lastY;
if (direction > 0) {
self._direction = "down";
} else {
self._direction = "up";
}
 
if(currntY == 0){
self._direction = "top";
} else if((currntY + window.screen.availHeight) == document.body.clientHeight){
self._direction = "bottom";
}
 
document.getElementById('nav').innerHTML= self._direction;
//document.getElementById('nav').innerHTML= currntY + "|" + window.screen.availHeight  + "|" + document.body.clientHeight;
}, false);
},
 
//通过一个dom对象进行初始化
init: function(a) {
var class_clone = function(source) {
var result={};
for (var key in source) {
result[key] = typeof source[key]==="object" ? class_clone(source[key]) : source[key];
}
return result;
}
var self =  class_clone(touch_screen.direction);
self._object = document.getElementById(a);
if (!self._object) {
alert('bind_object is not an object');
return false;
}
self.start();
}
}
}
 
//页面加载完成
window.onload = function() {
touch_screen.direction.init("inner");
}
</script>
 
<style>
* {margin: 0;  padding: 0;}
#outer{ width:90%; height: 100%; background: #000; margin: auto;  overflow: hidden;}
#inner{width:80%;  background: #e4e4e4; margin: auto; position:relative; top:0px; font-size: 1em; padding: 30px 10px;  }
#inner p{line-height: 30px; letter-spacing: 3px; text-indent:2em;}
#nav { width:100%; height: 50px; border: 1px solid #D4CD49; text-align: center; position:fixed;left:0;top:30% }
h2{ width: 100%; text-align: center; }
h3{ width: 100%; padding-left:60%;}
</style>
</head>
 
<body>
<div id="spText2"></div>
<div id="outer">
<div id="inner">
<h2>背影</h2>
<h3>—朱自清</h3>
<p>这里是中间的内容</p>
<div id="nav"  style="color:#F00; font-size:35px"></div>
</div>
</div>
 
</body>
</html>


版权声明:本文由Web学习之路发布,如需转载请注明出处。

本文链接:https://webge.net/?id=3

返回列表

没有更早的文章了...

下一篇:如何通过滚动页面控制视频播放和停止

“手机端触屏手指滑动方向” 的相关文章

代理事件绑定

代理事件绑定

 代理绑定事件通用绑定事件的函数...

js 面向对象类

js 面向对象类

类与实例:    类的声明    生成实例类与继承    如何实现继承    继承的几种方式原型链实现继承new child2.__prot...

数组有哪些原生方法

赋值方法:pop 和 push   pop // 删除数组最后一个元素,返回被删除的元素push // 在数组尾部插入1-N个元素,返回操作后数组的lengthshift     //  删除数组第一个元素,返回被删除的元素uns...

函数参数会生成新的作用域

函数参数会生成新的作用域

如果函数定义了参数就会自动生成新的作用域,这时候里面的变量值就会先从参数新的作用域找,如果没有就会再往上面找直到全局...

event-loop

event-loop

如果知道js运行机制,在工作中会帮助我们更好的理解和编写代码,也知道为什么js是单线程js为什么是单线程原因,就是为了避免DOM渲染的冲突异步是一种“无奈”的解决方案,虽然有很多问题,如下:1,没按照书写方式执行,可读性差2,callback中不容易模块化什么是event-loop1,同步代码,直接...