<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
*{
margin:0;
padding:0;
}
ul{
list-style: none;
}
#box{
width:200px;
height: 200px;
font-weight:bold;">#999;
}
</style>
</head>
<body>
<div id="box">
</div>
<script>
var box = document.querySelector('#box')
box.addEventListener('touchstart',function(){
box.style.backgroundColor = 'red'
})
box.addEventListener('touchmove',function(){
box.style.backgroundColor = 'yellow'
box.innerHTML = Math.random()
})
box.addEventListener('touchend',function(){
box.style.backgroundColor = 'blue'
})
box.addEventListener('touchcancel',function(){
box.style.backgroundColor = 'pink'
})
setTimeout(function(){
alert('恭喜你中奖了')
},3000)
</script>
</body>
</html>
移动端事件
原创wg_iGBFcBFB 博主文章分类:移动端 ©著作权
©著作权归作者所有:来自51CTO博客作者wg_iGBFcBFB的原创作品,请联系作者获取转载授权,否则将追究法律责任
上一篇:es5 实现继承
下一篇:class-静态成员
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
vue 移动端适配
这里我写一下我自己用的vue 移动端适配 ,可能跟别人的不一样。但是效果是一样的。我
vue 移动端 重启 html scala