Can somebody give a full code on how to move an object inJavaScript | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Can somebody give a full code on how to move an object inJavaScript

21st May 2019, 5:28 PM
Dhruva Shah
2 Answers
+ 8
Hint: var a =0 function moveLeft(){ document.getElementById().style. left=a+"px" a+=5 } This may or may not work as you want. It is just a hint for what you want to do. You can make it as you want.
21st May 2019, 8:02 PM
🍇 Alex Tușinean 💜
🍇 Alex Tușinean 💜 - avatar
0
If you wish to animate HTML objec, you have to continually raise/lower its "x" and/or "y" attributes. For moving instantly just add/subtract from that attributes.
21st May 2019, 5:36 PM
Maneren
Maneren - avatar