JavaScript Animations
JavaScript Animations 1 +
<style> #container { width: 400px; height: 400px; position: relative; background: yellow; } #animate { width: 50px; height: 50px; position: absolute; background-color: red; } </style> <button onclick="myMove()">Click Me</button> <div id ="container"> <div id ="animate"></div> </div> <script> function myMove() { var elem = document.getElementById("animate"); var pos = 0; var id = setInterval(frame, 5); function frame() { if (pos == 350) { clearInterval(id); } else { pos++; elem.style.top = pos + 'px'; elem.style.left = pos + 'px'; } } } </script>
JavaScript Animations 2+

JavaScript Animations 3 - Bouncing Text +
JavaScript Animations 4 +
JavaScript Animations 5 +
My First JavaScript Text Animation
<script> let text = "How are you brother. This is my first javascript animation script from my logic i have created."; var counter =0; var animatedText = document.querySelector('#demo'); let textAnimation = setInterval(function() { animatedText.textContent = animatedText.textContent + text[counter]; counter++; if(counter == text.length){ clearInterval(textAnimation);return;} },50 ); </script>
JavaScript Animations 6 - Recursive setTimeout-based animation +
I am foo.