Web.QHMIT
.com
Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
Run
<!DOCTYPE html> <title>Example</title> <style> .animate { background: yellowgreen; color: olivedrab; font: 100 16px sans-serif; padding: 10px; min-width: 10%; animation: myAnimation 3s ease 1s 2 forwards; } @keyframes myAnimation { 50% { min-width: 100%; } } </style> <input type="button" class="animate" value="My Button">
Preview