Web.QHMIT
.com
Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
Run
<!DOCTYPE html> <title>Example</title> <style> .springy-text { color: white; animation-name: springy-text; animation-duration: 1s; animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 3.0); animation-delay: 1s; animation-iteration-count: 1; animation-direction: normal; animation-fill-mode: forwards; } @keyframes springy-text { 0% { letter-spacing: 1.2em; color: white; } 100% { letter-spacing: 0.1em; color: orange; } } </style> <h3 class="springy-text">Animations!</h3>
Preview