摘要:
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0,viewport-fit:cover"> 阅读全文
摘要:
tween算法 https://www.cnblogs.com/cloudgamer/archive/2009/01/06/Tween.html 参数说明: t: current time:当前时间; b: beginning value:初始值,元素的初始位置; c: change in valu 阅读全文
摘要:
// 绑定滚轮事件//chrome iedocument.addEventListener('mousewheel', scrollMove);//firefoxdocument.addEventListener('DOMMouseScroll', scrollMove);/** 实现滚轮滚动触发的 阅读全文
摘要:
节流 throttle 节流(throttle):当持续触发事件时,保证一定时间段内只调用一次事件处理函数。 函数节流主要有两种实现方法:时间戳和定时器。 var throttle = function(func, delay) { var prev = Date.now(); return fun 阅读全文
摘要:
实现全屏 个人版:function isFullScreen() { var fullscreenElement = document.fullscreenElement || document.webkitFullscreenElement || document.mozFullScreenEle 阅读全文