I've been several hours trying to make a <div>
block move left via JavaScript, then go back to original position. Not a chance.
This is the code:
JS
var block= null;
function init() {
block= document.getElementById('myDiv');
}
function move() {
block.style.left = parseInt(block.style.left) + 10 + 'px';
if(parseInt(block.style.left)>=600) {
block.style.left = 12;
}
setTimeout(move,20);
}
window.onload = init;
HTML
<div id="myDiv" onload="move();">
<img src="image.png" id="anImage" >
</div>
CSS
#myDiv {
position: absolute;
bottom: 40%;
left: 100px;
border: 3px solid black;
}
What you see in the code are all the elements (and their styles) involved in this. The js file is loading correctly and works with other functions (changing the image inside the div, etc...).
If you see any mistakes I made please point them to me. It's my first moving animation and it can't just make it work.
Ps: It should work just with this so I'm not going to use jQuery.