当前位置:网站首页>JS slow motion animation principle teaching (super detail)
JS slow motion animation principle teaching (super detail)
2022-07-07 13:21:00 【Zhou million】
1、 Write first html and css style ,
<style>
* {
margin: 0;
padding: 0;
}
.box {
position: absolute;
width: 100px;
height: 100px;
background-color: pink;
}
.ha {
position: absolute;
top: 300px;
left: 400px;
width: 200px;
height: 200px;
background-color: purple;
color: aliceblue;
}
body {
height: 1000px;
font-size: 20px;
}
</style>
</head>
<body>
<div class="box">gump Move the box to 100</div>
<div class="gump">gump Move the box to 500</div>The effect is shown in the figure : The important thing is to learn js technology , It doesn't matter whether the style is good-looking or not ~

2、 Next write js, I wrote it directly below , So it's no use load
3、 Encapsulate an animation function , Add click event , Call animation function in event , Click two boxes to realize gradient animation
4、 The explanation is super detailed , There are comments that need to be discussed ~
<script>
var box = document.querySelector('.box');
var gump = document.querySelector('.gump');
// Function encapsulates a gradient animation
function animate(obj, target) {
// Let there always be only one timer in the function
clearInterval(obj.timer);
obj.timer = window.setInterval(function() {
// If you reach the target position, stop ( Clear timer )
if (obj.offsetLeft == target) {
clearInterval(obj.timer)
}
// The timer is recalculated every time it is called step The length of , The target length remains unchanged , The current position is getting closer and closer to the target
// The absolute value of the difference between them is getting smaller and smaller , Reduce the length of each step in the interval , Realize the slowing effect
// First step :(500-100)/10 = 40 The second step :(500-140)/10 = 36 ......
var step = (target - obj.offsetLeft) / 10;
// If the step size is positive , Take a larger integer ; If the step size is negative , Take the smaller integer . The purpose is to take the larger absolute value
step > 0 ? step = Math.ceil((step)) : step = Math.floor(step);
// obj.style.left read-write , But you can only get the style in the line , So it's used to ” Write ” Excellent data
// obj.offsetLeft Only read , But he can read in-line patterns , embedded style , Outer chain style ,” read ” Excellent data
obj.style.left = obj.offsetLeft + step + 'px';
}, 20);
}var box1 = box.addEventListener('click', function() {
animate(gump, 100);})
var box2 = gump.addEventListener('click', function() {
animate(gump, 500);})
</script>
边栏推荐
- COSCon'22 社区召集令来啦!Open the World,邀请所有社区一起拥抱开源,打开新世界~
- 【无标题】
- Practical case: using MYCAT to realize read-write separation of MySQL
- Test next summary
- [untitled]
- [untitled]
- Grep of three swordsmen in text processing
- . Net ultimate productivity of efcore sub table sub database fully automated migration codefirst
- 【无标题】
- DETR介绍
猜你喜欢

MySQL入门尝鲜

日本政企员工喝醉丢失46万信息U盘,公开道歉又透露密码规则

单片机学习笔记之点亮led 灯

LED light of single chip microcomputer learning notes

Write it down once Net a new energy system thread surge analysis

自定义线程池拒绝策略

High end for 8 years, how is Yadi now?

Cinnamon Applet 入门

Blog recommendation | Apache pulsar cross regional replication scheme selection practice

【学习笔记】AGC010
随机推荐
Write it down once Net a new energy system thread surge analysis
Sample chapter of "uncover the secrets of asp.net core 6 framework" [200 pages /5 chapters]
JNA learning notes 1: Concepts
Cmake learning and use notes (1)
Vscade editor esp32 header file wavy line does not jump completely solved
[learning notes] agc010
error LNK2019: 无法解析的外部符号
《开源圆桌派》第十一期“冰与火之歌”——如何平衡开源与安全间的天然矛盾?
How to continue after handling chain interruption / sub chain error removed from scheduling
Star Enterprise Purdue technology layoffs: Tencent Sequoia was a shareholder who raised more than 1billion
线程池拒绝策略最佳实践
PCAP学习笔记二:pcap4j源码笔记
Shortcut key of Bash
为租客提供帮助
Japanese government and enterprise employees got drunk and lost 460000 information USB flash drives. They publicly apologized and disclosed password rules
[untitled]
Day26 IP query items
Mongodb slice summary
Read PG in data warehouse in one article_ stat
存储过程的介绍与基本使用