Toggle navigation
☰
HTML
CSS
Scripting
Database
<!doctype html> <title>Example</title> <style> .box { width: 100px; height: 100px; background-color: steelblue; animation-name: slideLeftToRight; animation-duration: 2s; animation-iteration-count: infinite; } @keyframes slideLeftToRight { from { transform: translateX(0); } to { transform: translateX(200px); } } </style> <div class="box"></div>