DDR爱好者之家 Design By 杰米
这篇文章主要介绍了JavaScript监听触摸事件代码实例,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
监听
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no"> <title>Wsscat滑动事件Demo</title> </head> <body> <article>上下左右滑动</article> </body> <style> * { margin: 0; padding: 0; } article { background-color: #000000; width: 100%; height: 100px; text-align: center; line-height: 100px; color: #FFFFFF; } </style> <script> (function() { var touch = {}; function direction(startX, changeX, startY, changeY) { return Math.abs(startX - changeX) >= Math.abs(startY - changeY) "点击时的X坐标" + nStartX + "和Y坐标" + nStartY); }); document.getElementsByTagName('body')[0].addEventListener('touchmove', function(e) { touch.whenChangY = e.changedTouches[0].pageY; touch.whenChangX = e.changedTouches[0].pageX; //console.log("滑动时的X坐标" + nWhenChangX + "和Y坐标" + nWhenChangY); }) document.getElementsByTagName('body')[0].addEventListener('touchend', function(e) { touch.changY = e.changedTouches[0].pageY; touch.changX = e.changedTouches[0].pageX; //console.log("滑动后的X坐标" + nChangX + "和Y坐标" + nChangY); var swDirection = direction(touch.startX, touch.changX, touch.startY, touch.changY); console.log(swDirection); }) })() </script> </html>
触摸
<!--touchstart 在触摸开始时触发事件 touchend 在触摸结束时触发事件 touchmove 在触摸期间时触发事件--> <!DOCTYPE html> <html lang="zh-cn" class="no-js"> <head> <meta http-equiv="Content-Type"> <meta content="text/html; charset=utf-8"> <meta charset="utf-8"> <title></title> <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no"> <meta name="format-detection" content="telephone=no"> <meta name="format-detection" content="email=no"> <link rel="stylesheet" type="text/css" href="css/reset.css" rel="external nofollow" /> </head> <body> <div class="page page-1-1 page-current"> <div class="wrap"> </div> </div> <div class="page page-2-1 hide"> <div class="wrap"> </div> </div> <div class="page page-2-2 hide"> <div class="wrap"> </div> </div> <div class="page page-3-1 hide"> <div class="wrap"> </div> </div> </body> <script> (function() { var now = { row: 1, col: 1 }, last = { row: 0, col: 0 }; const towards = { up: 1, right: 2, down: 3, left: 4 }; var isAnimating = false; var touch = {}; function direction(startX, changeX, startY, changeY) { return Math.abs(startX - changeX) >= Math.abs(startY - changeY) "点击时的X坐标" + nStartX + "和Y坐标" + nStartY); }); document.getElementsByTagName('body')[0].addEventListener('touchmove', function(e) { touch.whenChangY = e.changedTouches[0].pageY; touch.whenChangX = e.changedTouches[0].pageX; //console.log("滑动时的X坐标" + nWhenChangX + "和Y坐标" + nWhenChangY); }) document.getElementsByTagName('body')[0].addEventListener('touchend', function(e) { touch.changY = e.changedTouches[0].pageY; touch.changX = e.changedTouches[0].pageX; //console.log("滑动后的X坐标" + nChangX + "和Y坐标" + nChangY); var swDirection = direction(touch.startX, touch.changX, touch.startY, touch.changY); console.log(swDirection); //以回调的方法来写这个动作 if(swDirection == 'Up') { swipeUp(function() { if(isAnimating) return; last.row = now.row; last.col = now.col; if(now.col == 2) { return; } else if(last.row != 6) { now.row = last.row + 1; now.col = 1; pageMove(towards.up); } }) } if(swDirection == 'Down') { if(isAnimating) return; last.row = now.row; last.col = now.col; if(now.col == 2) { return; } else if(last.row != 1) { now.row = last.row - 1; now.col = 1; pageMove(towards.down); } } if(swDirection == 'Left') { if(isAnimating) return; last.row = now.row; last.col = now.col; if(last.row > 1 && last.row < 5 && last.col == 1) { now.row = last.row; now.col = 2; pageMove(towards.left); } } if(swDirection == 'Right') { if(isAnimating) return; last.row = now.row; last.col = now.col; if(last.row > 1 && last.row < 5 && last.col == 2) { now.row = last.row; now.col = 1; pageMove(towards.right); } } }) function swipeUp(callback) { callback() } function hasClass(obj, cls) { return obj.className.match(new RegExp('(\\s|^)' + cls + '(\\s|$)')); } console.log(window.document) function addClass(obj, cls) { if(!hasClass(obj, cls)) obj.className += " " + cls; } function removeClass(obj, cls) { if(hasClass(obj, cls)) { var reg = new RegExp('(\\s|^)' + cls + '(\\s|$)'); obj.className = obj.className.replace(reg, ' '); } } function toggleClass(obj, cls) { if(hasClass(obj, cls)) { removeClass(obj, cls); } else { addClass(obj, cls); } } function pageMove(tw) { console.log(now); console.log(now); var lastPage = ".page-" + last.row + "-" + last.col, nowPage = ".page-" + now.row + "-" + now.col; switch(tw) { case towards.up: outClass = 'pt-page-moveToTop'; inClass = 'pt-page-moveFromBottom'; break; case towards.right: outClass = 'pt-page-moveToRight'; inClass = 'pt-page-moveFromLeft'; break; case towards.down: outClass = 'pt-page-moveToBottom'; inClass = 'pt-page-moveFromTop'; break; case towards.left: outClass = 'pt-page-moveToLeft'; inClass = 'pt-page-moveFromRight'; break; } isAnimating = true; var $nowPage = document.querySelector(nowPage); var $lastPage = document.querySelector(lastPage); console.log($nowPage); removeClass($nowPage, "hide"); addClass($lastPage, outClass) addClass($nowPage, inClass); setTimeout(function() { removeClass($lastPage, 'page-current'); removeClass($lastPage, outClass); addClass($lastPage, "hide"); addClass($nowPage, 'page-current'); removeClass($nowPage, inClass); isAnimating = false; }, 600); } })() </script> <style> body { width: 100%; overflow: hidden; } .page { width: 100%; height: 100%; position: absolute; font-size: 100px; text-align: center; } .page .wrap { height: 500px; } .page-1-1 { background-image: url(img/background/1.png); background-size: cover; } .page-2-1 { background-image: url(img/background/1.png); background-size: cover; } .page-2-2 { background-image: url(img/background/1.png); background-size: cover; } .page-3-1 { background-image: url(img/background/1.png); background-size: cover; } .page-3-2 { background-image: url(img/background/1.png); background-size: cover; } .page-4-1 { background-image: url(img/background/1.png); background-size: cover; } .page-4-2 { background-image: url(img/background/1.png); background-size: cover; } .page-5-1 { background-image: url(img/background/1.png); background-size: cover; } .page-current { z-index: 1; } .hide { display: none; } .pt-page-moveToTop { -webkit-animation: moveToTop .6s ease both; animation: moveToTop .6s ease both; } @-webkit-keyframes moveToTop { from {} to { -webkit-transform: translateY(-100%); } } .pt-page-moveFromBottom { -webkit-animation: moveFromBottom .6s ease both; animation: moveFromBottom .6s ease both; } @-webkit-keyframes moveFromBottom { from { -webkit-transform: translateY(100%); } } .pt-page-moveToBottom { -webkit-animation: moveToBottom .6s ease both; animation: moveToBottom .6s ease both; } @-webkit-keyframes moveToBottom { from {} to { -webkit-transform: translateY(100%); } } .pt-page-moveFromTop { -webkit-animation: moveFromTop .6s ease both; animation: moveFromTop .6s ease both; } @-webkit-keyframes moveFromTop { from { -webkit-transform: translateY(-100%); } } .pt-page-moveToRight { -webkit-animation: moveToRight .6s ease both; animation: moveToRight .6s ease both; } @-webkit-keyframes moveToRight { from {} to { -webkit-transform: translateX(100%); } } .pt-page-moveToLeft { -webkit-animation: moveToLeft .6s ease both; animation: moveToLeft .6s ease both; } @-webkit-keyframes moveToLeft { from {} to { -webkit-transform: translateX(-100%); } } </style> </html>
触摸前后
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <body> <!--利用touchstart和touchend触摸前后监听到的四个坐标分别是触摸前的x,y坐标和触摸后的x,y坐标, 然后用数学公式进行运算得出方向--> </body> <script type="text/javascript"> document.getElementsByTagName('body')[0].addEventListener('touchstart', function(e) { touch.startY = e.targetTouches[0].pageY; touch.startX = e.targetTouches[0].pageX; //console.log("点击时的X坐标" + nStartX + "和Y坐标" + nStartY); }); document.getElementsByTagName('body')[0].addEventListener('touchmove', function(e) { touch.whenChangY = e.changedTouches[0].pageY; touch.whenChangX = e.changedTouches[0].pageX; //console.log("滑动时的X坐标" + nWhenChangX + "和Y坐标" + nWhenChangY); }) document.getElementsByTagName('body')[0].addEventListener('touchend', function(e) { touch.changY = e.changedTouches[0].pageY; touch.changX = e.changedTouches[0].pageX; //console.log("滑动后的X坐标" + nChangX + "和Y坐标" + nChangY); var swDirection = direction(touch.startX, touch.changX, touch.startY, touch.changY); </script> </html>
GitHub地址:https://github.com/lianglixiong
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
DDR爱好者之家 Design By 杰米
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
DDR爱好者之家 Design By 杰米
暂无评论...
《魔兽世界》大逃杀!60人新游玩模式《强袭风暴》3月21日上线
暴雪近日发布了《魔兽世界》10.2.6 更新内容,新游玩模式《强袭风暴》即将于3月21 日在亚服上线,届时玩家将前往阿拉希高地展开一场 60 人大逃杀对战。
艾泽拉斯的冒险者已经征服了艾泽拉斯的大地及遥远的彼岸。他们在对抗世界上最致命的敌人时展现出过人的手腕,并且成功阻止终结宇宙等级的威胁。当他们在为即将于《魔兽世界》资料片《地心之战》中来袭的萨拉塔斯势力做战斗准备时,他们还需要在熟悉的阿拉希高地面对一个全新的敌人──那就是彼此。在《巨龙崛起》10.2.6 更新的《强袭风暴》中,玩家将会进入一个全新的海盗主题大逃杀式限时活动,其中包含极高的风险和史诗级的奖励。
《强袭风暴》不是普通的战场,作为一个独立于主游戏之外的活动,玩家可以用大逃杀的风格来体验《魔兽世界》,不分职业、不分装备(除了你在赛局中捡到的),光是技巧和战略的强弱之分就能决定出谁才是能坚持到最后的赢家。本次活动将会开放单人和双人模式,玩家在加入海盗主题的预赛大厅区域前,可以从强袭风暴角色画面新增好友。游玩游戏将可以累计名望轨迹,《巨龙崛起》和《魔兽世界:巫妖王之怒 经典版》的玩家都可以获得奖励。
更新日志
2024年11月24日
2024年11月24日
- 凤飞飞《我们的主题曲》飞跃制作[正版原抓WAV+CUE]
- 刘嘉亮《亮情歌2》[WAV+CUE][1G]
- 红馆40·谭咏麟《歌者恋歌浓情30年演唱会》3CD[低速原抓WAV+CUE][1.8G]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[320K/MP3][193.25MB]
- 【轻音乐】曼托凡尼乐团《精选辑》2CD.1998[FLAC+CUE整轨]
- 邝美云《心中有爱》1989年香港DMIJP版1MTO东芝首版[WAV+CUE]
- 群星《情叹-发烧女声DSD》天籁女声发烧碟[WAV+CUE]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[FLAC/分轨][748.03MB]
- 理想混蛋《Origin Sessions》[320K/MP3][37.47MB]
- 公馆青少年《我其实一点都不酷》[320K/MP3][78.78MB]
- 群星《情叹-发烧男声DSD》最值得珍藏的完美男声[WAV+CUE]
- 群星《国韵飘香·贵妃醉酒HQCD黑胶王》2CD[WAV]
- 卫兰《DAUGHTER》【低速原抓WAV+CUE】
- 公馆青少年《我其实一点都不酷》[FLAC/分轨][398.22MB]
- ZWEI《迟暮的花 (Explicit)》[320K/MP3][57.16MB]