How To Create Simple Animation Using Css, Html And Javascript

Simple Animation source:google
Step 1) Add HTML
<div id=”myProgress”>
<div id=”myBar”></div>
</div>
Step 2) Add CSS:
#myProgress {
position: relative;
width: 100%;
height: 30px;
background-color: grey;
}
#myBar {
position: absolute;
width: 1%;
height: 100%;
background-color: green;
}
Step 3) Add JavaScript:
Create the Animation Using JavaScript:
function move() {
var elem = document.getElementById(“myBar”);
var width = 1;
var id = setInterval(frame, 10);
function frame() {
if (width >= 100) {
clearInterval(id);
} else {
width++;
elem.style.width = width + ‘%’;
}
}
}
credit: http://www.w3schools.com/
P.S. Thanks for reading to the end. If you found value in this, kindly recommend (by clicking the share buttons below) so other people can learn too!Is there a Howto you'd love to learn? We'll be glad to create it for you, let us know in the comments. Cheers!