Toggle navigation
☰
HTML
CSS
Scripting
Database
<!doctype html> <title>Example</title> <svg width="200" height="100" viewBox="0 0 100 50"> <circle cx="30" cy="25" r="5" fill="orange"> <animate attributeName="opacity" values="0;1;0" dur="1s" repeatCount="indefinite" begin="0s" /> </circle> <circle cx="50" cy="25" r="5" fill="orange"> <animate attributeName="opacity" values="0;1;0" dur="1s" repeatCount="indefinite" begin="0.2s" /> </circle> <circle cx="70" cy="25" r="5" fill="orange"> <animate attributeName="opacity" values="0;1;0" dur="1s" repeatCount="indefinite" begin="0.4s" /> </circle> </svg>