大家好,我是神三元。
今天我们来做一个小玩意,用原生 JS 封装一个动画插件。效果如下:
这个飞驰的小球看起来是不是特有灵性呢?没错,它就是用原生JS实现的。
接下来,就让我们深入细节,体会其中的奥秘。相信这个实现的过程,会比动画本身更加精彩!
[h3]一、需求分析[/h3]封装一个插件,将小球的 DOM 对象作为参数传入,使得小球在鼠标按下和放开后能够运动,在水平方向做匀减速直线运动,初速度为鼠标移开瞬间的速度,在竖直方向的运动类似于自由落体运动。并且,小球的始终在不离开浏览器的边界运动,碰到边界会有如图的反弹效果。
[h3]二、梳理思路[/h3]分析这样的一个过程,其中大致会经历一下的关键步骤:
- 1、鼠标按下时,记录小球的初始位置信息
- 2、鼠标按下后滑动,记录松开鼠标瞬间的移动速度
- 3、鼠标松开后,在水平方向上,让小球根据刚刚记录的移动速度进行匀减速运动,竖直方向设定一个竖直向下的加速度,开始运动。
- 4、水平方向速度减为 0 时,水平方向运动停止;竖直方向速度减为 0 或者足够小时,竖直方向运动停止。
[h3]三、难点分析[/h3]看到这里,估计你的思路清晰了不少,但可能还是有一些比较难以搞定的问题。
首先,你怎么拿到松开手瞬间的小球移动速度?如何去表达出这个加速度的效果?
在实现方面,这是非常重要的问题。不过,其实非常的简单。
浏览器本身就是存在反应时间的,你可以把它当做一个摄像机,在给 DOM 元素绑定了事件之后,每隔一段时间(一般非常的短,根据不同浏览器厂商和电脑性能而定,这里我用到 chrome,保守估计为 20ms)会给这个元素拍张照,记录它的状态。在按下鼠标之后的拖动过程中,事实上会给元素拍摄无数张照片。如果现在每经过一段时间,我记录当下当前照片与上一段照片的位置差,那么最后一次拍照和倒数第二次拍照的小球位置差距,是不是就可以作为离开的瞬时速度呢?当然可以啦。废话不多说,上图:
同样,对实现加速度的效果,首先弄清一个问题,什么是速度?速度就是单位时间内运动的距离,这里暂且把它当做 20ms 内的距离,那么我每次拍照时,将这个距离增加或减少一个值,这个值就是加速度。
[h3]四、初步实现[/h3]当大部分问题考虑清楚之后,现在开始实现。
首先是基本的样式,比较简单。
现在来完成核心的 JS 代码,采用 ES6 语法
- ['strX', 'strY', 'strL', 'strT', 'curL', 'curT'].forEach(item => {
复制代码- //为按下鼠标绑定事件,事件函数一定要绑定this,在封装过程中this统一指定为实例对象,下不赘述
复制代码- this.DOWN = this.down.bind(this);
复制代码- this.ele.addEventListener('mousedown', this.DOWN);
复制代码- this.strX = ev.clientX;//鼠标点击处到浏览器窗口最左边的距离
复制代码- this.strY = ev.clientY;//鼠标点击处到浏览器窗口最上边的距离
复制代码- this.strL = ele.offsetLeft;//元素到浏览器窗口最左边的距离
复制代码- this.strT = ele.offsetTop;//元素到浏览器窗口最上边的距离
复制代码
- this.MOVE = this.move.bind(this);
复制代码- this.UP = this.up.bind(this);
复制代码- document.addEventListener('mousemove', this.MOVE);
复制代码- document.addEventListener('mouseup', this.UP);
复制代码
- clearInterval(this.flyTimer);
复制代码- this.speedFly = undefined;
复制代码- clearInterval(this.dropTimer);
复制代码- this.curL = ev.clientX - this.strX + this.strL;
复制代码- this.curT = ev.clientY - this.strY + this.strT;
复制代码- ele.style.left = this.curL + 'px';
复制代码- ele.style.top = this.curT + 'px';
复制代码
- this.lastFly = ele.offsetLeft;
复制代码- this.speedFly = ele.offsetLeft - this.lastFly;
复制代码- this.lastFly = ele.offsetLeft;
复制代码- document.removeEventListener('mousemove', this.MOVE);
复制代码- document.removeEventListener('mouseup', this.UP);
复制代码
- this.vertical.call(this);
复制代码- maxL = document.documentElement.clientWidth - this.ele.offsetWidth;
复制代码- let speed = this.speedFly;
复制代码- this.flyTimer = setInterval(() => {
复制代码- Math.abs(speed) = maxL) {
复制代码- this.ele.style.left = maxL + 'px';
复制代码- Math.abs(speed) = maxT) {
复制代码- this.ele.style.top = maxT + 'px';
复制代码- if (curT item === fn ? isExist = true : null);
复制代码- !isExist ? pond.push(fn) : null;
复制代码- pond.forEach((item, index) => {
复制代码- //提一下我在这里遇到的坑,这里如果写item=null是无效的
复制代码- //例子:let a = {name: funtion(){}};
复制代码- //这个时候操作b的值对于a的name属性是没有影响的
复制代码- subscribe.fire(100, 200);
复制代码 结果:
确定过眼神,你就是对的 Subscribe。(手动滑稽)
[h3]五、优化代码[/h3]- if (typeof Subscribe === 'undefined') {
复制代码- throw new ReferenceError('没有引入subscribe.js!');
复制代码
- ['strX', 'strY', 'strL', 'strT', 'curL', 'curT'].forEach(item => {
复制代码
- this.subDown = new Subscribe;
复制代码- this.subMove = new Subscribe;
复制代码- this.subUp = new Subscribe;
复制代码
- this.DOWN = this.down.bind(this);
复制代码- this.ele.addEventListener('mousedown', this.DOWN);
复制代码
- this.strL = ele.offsetLeft;
复制代码- this.strT = ele.offsetTop;
复制代码
- this.MOVE = this.move.bind(this);
复制代码- this.UP = this.up.bind(this);
复制代码- document.addEventListener('mousemove', this.MOVE);
复制代码- document.addEventListener('mouseup', this.UP);
复制代码
- this.subDown.fire(ele, ev);
复制代码
- this.curL = ev.clientX - this.strX + this.strL;
复制代码- this.curT = ev.clientY - this.strY + this.strT;
复制代码- ele.style.left = this.curL + 'px';
复制代码- ele.style.top = this.curT + 'px';
复制代码
- this.subMove.fire(ele, ev);
复制代码
- document.removeEventListener('mousemove', this.MOVE);
复制代码- document.removeEventListener('mouseup', this.UP);
复制代码
- this.subUp.fire(this.ele, ev);
复制代码
- function extendDrag(drag) {
复制代码- let stopAnimate = function stopAnimate(curEle) {
复制代码- clearInterval(curEle.flyTimer);
复制代码- curEle.speedFly = undefined;
复制代码- clearInterval(curEle.dropTimer);
复制代码- let computedFly = function computedFly(curEle) {
复制代码- curEle.lastFly = curEle.offsetLeft;
复制代码- curEle.speedFly = curEle.offsetLeft - curEle.lastFly;
复制代码- curEle.lastFly = curEle.offsetLeft;
复制代码- let animateFly = function animateFly(curEle) {
复制代码- maxL = document.documentElement.clientWidth - curEle.offsetWidth,
复制代码- curEle.flyTimer = setInterval(() => {
复制代码- Math.abs(speed) = maxL) {
复制代码- curEle.style.left = maxL + 'px';
复制代码- Math.abs(speed) = maxT) {
复制代码- curEle.style.top = maxT + 'px';
复制代码- [code] if (curT
|
|