WEBLEB
Accueil
Éditeur
Connexion
Pro
Français
English
Français
Español
Português
Deutsch
Italiano
हिंदी
Chargeur simple
2999
Devtools_7
Ouvrir dans l'éditeur
Video
Publiez votre code
2
Recommandé
25 November 2025
Chargeur de jeu HTML5 avec le SDK Yandex Games
16 October 2025
Extrait HTML du chargeur de cylindre CSS
27 October 2023
Jeu de Tetris simple
HTML
Copy
CSS
Copy
svg { width: 3.25em; transform-origin: center; animation: rotating 2s linear infinite; } circle { fill: none; stroke: hsl(214, 97%, 59%); stroke-width: 2; stroke-dasharray: 1, 200; stroke-dashoffset: 0; stroke-linecap: round; animation: dash 1.5s ease-in-out infinite; } @keyframes rotating { 100% { transform: rotate(360deg); } } @keyframes dash { 0% { stroke-dasharray: 1, 200; stroke-dashoffset: 0; } 50% { stroke-dasharray: 90, 200; stroke-dashoffset: -35px; } 100% { stroke-dashoffset: -125px; } }
JS
Copy
/* Replace with your JS Code (Leave empty if not needed) */