分享网页检测摇一摇实例代码

前端之家收集整理的这篇文章主要介绍了分享网页检测摇一摇实例代码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

废话不多说了,直接给大家贴代码了,具体代码如下所示:

this.speed || Math.abs(y-this.lastY) > this.speed || Math.abs(z-this.lastZ) > this.speed ) { if(this.num == 0){ this.beginSecond = Date.parse(new Date()) / 1000 } this.num += 1; } this.lastX = x; this.lastY = y; this.lastZ = z; if(this.num >= this.minNum){ var now = Date.parse(new Date()) / 1000; if(now - this.beginSecond <= this.maxSecond){ this.release(); if(this.callback){ this.callback(); } } this.reset(); } } }

用法:

好了,本文所述给大家介绍到这里,后续还会持续更新,希望本文给大家分享网页检测摇一摇实例代码的相关知识对大家有所帮助。

原文链接:https://www.f2er.com/js/50549.html

猜你在找的JavaScript相关文章