Today I simply learned js motion animation, recorded my experience and shared it with everyone.
The following are the results I compiled.
Knowledge point 1: Speed animation.
1. The first step is to implement speed motion animation and encapsulate a function. The knowledge used is setInterval(function(){
oDiv.style.left=oDiv.offsetLeft 10 "px";
},30).
As to why offsetLeft is used here, I specifically searched it and the useful information I got is:
The similarity between a.offsetLeft and left is that they represent the left position of the child node relative to the parent node.
b. But left can be read and written, while offsetLeft is read-only;
c. And offsetLeft has no unit, and there is no px behind it when obtaining the position of the child node.
Here is some additional knowledge, thanks to this blogger, http://blog.163.com/hongshaoguoguo@126/blog/static/18046981201372885729561/.
2. Stop the moving node. Here we use the if statement to do a verification. If offsetLeft==0, clearInterval (timer), the timer here should be initialized = null in advance, and then assign the previous motion animation to it.
3. There is a problem here. If the movement is triggered again before the end of the movement, the speed of the movement will be accumulated. Here, as long as clearInterval (timer) is used before the entire movement starts, it will be fine.
4. Set the move-in and removal effect, and set parameters for the movement. One is the speed, and the other is the target position iTarget. We found that the speed can also be judged by the position of ITarget, so only one parameter is needed.
Knowledge point 2: Transparency gradient
1. In fact, it is almost the same as before, except that the value of ITarget is transparency, and the process is still to clear the timer and then open a timer to judge, etc.
2. Define a parameter alpha = transparency. Note that the timer should be written like this:
alpha =speed;
oDiv.style.filter='alpha(opacity:' alpha ')'; //This is a very important method, please note that it is written like this
oDiv.style.opacity=alpha/100; //Be careful not to forget to divide by 100
3. The above are all inline styles.
Knowledge Point 3: Buffering Movement
1. Buffering motion means that the greater the distance, the greater the speed, and the smaller the distance, the smaller the speed, that is, the speed is related to the distance.
2. According to the above statement, redefine the speed. The speed was 0 at the beginning, but now:
var speed=iTarget-oDiv.offsetLeft;
Redefine timer:
oDiv.style.left=oDiv.offsetLeft speed 'px';
At this point we found that the speed was too high, we can do this:
var speed=(iTarget-oDiv.offsetLeft)/10;
3. There will be a serious problem at this time. Because the minimum unit of the screen is px, there will be an iTarget whose final left value is a decimal and not the target. This can be solved through judgment. Math is introduced here. floor(), which rounds down, and Math.ceil(), which rounds up. After defining speed we write like this:
speed=speed>0?Math.ceil(speed):Math.floor(speed);
In this way, it is completely guaranteed that the speeds are all integers and are all 0 at the critical value.
Knowledge point 4: Multi-object motion
1. First get all the objects and form an array, and then use a for loop to do it (how classic this method is!), add node events in the for loop, and use this to replace the current node in the function , eg: startMove(this, iTarget), when defining a function startMove(obj, iTarget).
2. When taking the current width offsetWidth, you must use the value of obj.
3. When the mouse moves very fast, the width of the node cannot be restored to its original state. This is because the timer is a common timer for everyone. The next node has cleared the timer before the previous node has returned to its original state. The solution is to add an index to each node, which is to add aDiv[i].timer=null; in the above for loop; and then replace timer with obj.timer in the defined function. Therefore, we should pay attention to the fact that something will happen to the shared timer.
4. In the movement of transparency, alpha replaces speed, but even if the timer is not shared, problems will arise in the movement of multiple objects. This is because alpha is shared, causing each object to tear each other apart. The solution is to use it like Assign alpha to each node in the for loop like timer.
Summary: To resolve conflicts, either initialize or personalize.
Knowledge point 5. Obtain styles
1. In the timer that changes the width of the node (large for moving in, small for removing), if you add a border to the node, it will be smaller than the target node when moving in, and larger than the target node when moving out. Pay attention to the width padding scrollbar (scroll bar) border, so the reason is that each offset will increase border*2- (the value decreased each time in the timer).
2. The way to solve the above problem is to write width in line and use parseInt(oDiv.style.width) instead of offsetLeft. However, it cannot always be written in line, so we define a function to get the link style:
function getStyle(obj,attr){
if(obj.currentStyle){
return obj.currentStyle[attr]; //ie browser
}
else{
return getComputerStyle(obj,false)[attr]; //Other browsers
}
}
3. For font-size, there is only one way of writing fontSize in js.
Knowledge point 6: Any attribute value
1. All offset-types will have small bugs. You need to use the getStyle function. This function is often used together with parseInt() and is usually saved in a variable.
2. When writing style.width, you can also write style['width'].
3. For adjusting the attribute values of multiple objects, you can encapsulate the style as a parameter, so that the multi-object attribute function includes the three attribute values (obj, attr, iTarget).
4. The above motion frame is not suitable for transparency changes, because transparency is decimal, for two reasons, the first is parseInt, the second is attr=...px, here we can use a Use if interpretation to process transparency separately, replace parseInt with parseFloat, and remove px.
5. The computer itself has a bug. 0.07*100 is not equal to 7, so we introduce a function called Math.round(), which is a rounded value.
Knowledge point 7: Chain motion
1. Introduce the move.js framework.
2. Pass in a callback function fn(), use if to judge, if there is fn(), then execute fn().
Knowledge point 8: Simultaneous movement
1. If you write two motion functions to control simultaneous motion, function coverage will occur.
2. Use the knowledge point of json. The loop of json uses for (i in json), and the parameters of the motion function are obj, json, fn.
3. There is no iTarget value anymore, it is replaced by json[attr].
As I write this, it’s completely over. I hope you all like it. I also hope it will be helpful for everyone to learn js motion animation.

如何使用JS和百度地图实现地图平移功能百度地图是一款广泛使用的地图服务平台,在Web开发中经常用于展示地理信息、定位等功能。本文将介绍如何使用JS和百度地图API实现地图平移功能,并提供具体的代码示例。一、准备工作使用百度地图API前,首先需要在百度地图开放平台(http://lbsyun.baidu.com/)上申请一个开发者账号,并创建一个应用。创建完成

js字符串转数组的方法:1、使用“split()”方法,可以根据指定的分隔符将字符串分割成数组元素;2、使用“Array.from()”方法,可以将可迭代对象或类数组对象转换成真正的数组;3、使用for循环遍历,将每个字符依次添加到数组中;4、使用“Array.split()”方法,通过调用“Array.prototype.forEach()”将一个字符串拆分成数组的快捷方式。

如何使用JS和百度地图实现地图热力图功能简介:随着互联网和移动设备的迅速发展,地图成为了一种普遍的应用场景。而热力图作为一种可视化的展示方式,能够帮助我们更直观地了解数据的分布情况。本文将介绍如何使用JS和百度地图API来实现地图热力图的功能,并提供具体的代码示例。准备工作:在开始之前,你需要准备以下事项:一个百度开发者账号,并创建一个应用,获取到相应的AP

如何使用JS和百度地图实现地图多边形绘制功能在现代网页开发中,地图应用已经成为常见的功能之一。而地图上绘制多边形,可以帮助我们将特定区域进行标记,方便用户进行查看和分析。本文将介绍如何使用JS和百度地图API实现地图多边形绘制功能,并提供具体的代码示例。首先,我们需要引入百度地图API。可以利用以下代码在HTML文件中导入百度地图API的JavaScript

js中new操作符做了:1、创建一个空对象,这个新对象将成为函数的实例;2、将新对象的原型链接到构造函数的原型对象,这样新对象就可以访问构造函数原型对象中定义的属性和方法;3、将构造函数的作用域赋给新对象,这样新对象就可以通过this关键字来引用构造函数中的属性和方法;4、执行构造函数中的代码,构造函数中的代码将用于初始化新对象的属性和方法;5、如果构造函数中没有返回等等。

这篇文章主要为大家详细介绍了js实现打字小游戏,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下。

php在特定情况下可以读js内部的数组。其方法是:1、在JavaScript中,创建一个包含需要传递给PHP的数组的变量;2、使用Ajax技术将该数组发送给PHP脚本。可以使用原生的JavaScript代码或者使用基于Ajax的JavaScript库如jQuery等;3、在PHP脚本中,接收传递过来的数组数据,并进行相应的处理即可。

js全称JavaScript,是一种具有函数优先的轻量级,直译式、解释型或即时编译型的高级编程语言,是一种属于网络的高级脚本语言;JavaScript基于原型编程、多范式的动态脚本语言,并且支持面向对象、命令式和声明式,如函数式编程。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

WebStorm Mac version
Useful JavaScript development tools

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)
