On a whim, I wrote a case study of a small ball bouncing back and forth for your reference. The specific content is as follows The main method is to use the margin-left / top value for displacement. Of course, you can also use positioning to do it. The ones used in this case are:
On the code Use native js as a whole <style> //style style* { margin: 0; padding: 0; } #box { width: 500px; height: 600px; background-color: #eee; box-shadow: 0 0 10px 0 #000; margin: auto; overflow: hidden; position: relative; margin-top: 50px; } #box div { width: 50px; height: 50px; border-radius: 50%; background-color: #fff; position: absolute; } </style> <body> <div id="box"> <div id="cir"></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> </div> </body> <script> var box = document.getElementById("box"); var cir = document.getElementById("cir") var cirs = box.querySelectorAll("div"); collMove(box, cir, 6); collMove(box, cirs[1], 7); collMove(box, cirs[2], 8); collMove(box, cirs[3], 9); collMove(box, cirs[4], 10); collMove(box, cirs[5], 10); collMove(box, cirs[6], 11); /** * The element pops up when it encounters a boundary* Change the element color while popping up* @param {Container to get} box * @param {get the bounce element in the container} cir * @param {bounce speed} speed */ function collMove(box, cir, speed) { //Method encapsulation var oDiv = box; //Get the container var oCir = cir; //Get the element in the container var xMax = oDiv.offsetWidth - oCir.offsetWidth; //Maximum X-axis boundary of the container var yMax = oDiv.offsetHeight - oCir.offsetHeight; //Maximum Y-axis boundary of the container var motionX = 0; //Element X-axis coordinate initialization var motionY = 0; //Element Y-axis coordinate initialization (() => { var speedX = speed; //x-axis offset var speedY = speed; //y-axis offset setInterval(() => { motionX += speedX; //Perform X-axis offsetmotionY += speedY; //Perform y-axis offsetif (motionX >= xMax) { //Check if it hits the right boundary of the X-axismotionX = xMax; //When hitting the boundary, set the X-axis coordinate to the maximum right boundary of the x-axisspeedX = -speedX; //Reverse the x-axis offsetrandColor(oCir); //Change color} else if (motionX <= 0) { //Check if it hits the left boundary of the X-axismotionX = 0; //When hitting the boundary, set the X-axis coordinate to 0, i.e. the initial position of the left boundaryspeedX = -speedX; //Reverse the X-axis offset againrandColor(oCir); //The same goes for the upper and lower boundary detection below} if (motionY >= yMax) { motionY = yMax; speedY = -speedY randColor(oCir); } else if (motionY <= 0) { motionY = 0; speedY = -speedY; randColor(oCir); } oCir.style.marginLeft = motionX + "px"; //Set the element's X-axis coordinate oCir.style.marginTop = motionY + "px"; //Set the element's Y-axis coordinate }, 10); })(); function randColor(obj) { //Encapsulate a random color, change the color and call directly var op = Math.random() * 7 + 3; function color() { return Math.floor(Math.random() * 256); } return obj.style.backgroundColor = `rgba(${color()},${color()},${color()},${op})`; } } </script> The most important thing in the whole method is to understand the detection and judgment of element position and container boundaries . Once you understand this part, the rest will be very simple. Throw a brick: for(var i = 1 ; i<=10;i++){ collMove(box,cirs[i],i); } The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: MySQL multi-table query detailed explanation
>>: How to solve the error of PyCurl under Linux
Article mind map Why use master-slave replication...
In web page production, displaying and hiding ele...
Recently, I need to use a lot of fragmented pictu...
Table of contents 1 Test Cases 2 JS array dedupli...
Table of contents 1. redo log (transaction log of...
1. Command Introduction The date command is used ...
1. Rounded Corners Today's web designs are con...
Referring to the online information, I used cmake...
This article describes how to enable https servic...
Preface Regarding HugePages and Oracle database o...
There are two ways to configure multiple projects...
1. Cause The official cerbot is too annoying. It ...
Preface Generally speaking, when we talk about Li...
1. Arrange CSS in alphabetical order Not in alphab...
introduction In recent years, the call for TypeSc...