Web.QHMIT
.com
Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
Run
<!DOCTYPE html> <title>Example</title> <style> .animatedBox { width: 300px; height: 200px; text-align: center; font: 24px/40px sans-serif; color: white; background: white url('/pix/samples/albatross.png') no-repeat bottom center / 0%; animation: moveBg 3s ease 1s 1 forwards; } @keyframes moveBg { 100% { background: skyblue url('/pix/samples/albatross.png') no-repeat bottom center / 150%; } } </style> <div class="animatedBox">Royal Albatross</div>
Preview