FULL STACK   ·   UI   ·   UX   ·   GRAPHICS   ·   DEVELOPER   ·   INSTRUCTOR

Adam Khoury

Donate funds to show love and support

Click the button below to donate funds securely online. You can use your PayPal account or a credit card.

Your donations help free up my time to produce more content and assist in covering server costs. It's also a great way to say thanks for the content!

Application Configuration

Adam will be adding options here soon.

Sprite keyframes Animation Bouncing Ball Tutorial

Published :
Author :
Adam Khoury
Learn to rig a bouncing ball sprite sheet animation using CSS @keyframes and the animation property. <style> #ball{ background: url(images/ball_bounce.png); width: 50px; height: 50px; animation: ball-bounce 0.7s steps(6) infinite; } @keyframes ball-bounce { from { background-position: 0px; } to { background-position: -300px; } } </style> <div id="ball"></div>