/
githubmirror
/
anime
Обзор
Документация
Войти
/
githubmirror
/
anime
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tests/playground/timekeeper/index.html
48 строк
1 KB
Julian Garnier
4.4.0
29 апр 2026, 19:05
29 апр 2026, 19:05
8816e43
Код
Авторство
О чём код?
<!DOCTYPE html> <html> <head> <title>Timekeeper / Anime.js</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> <link href="../assets/css/styles.css" rel="stylesheet"> <style> body { display: flex; flex-direction: column; flex-wrap: wrap; justify-content: center; align-items: center; height: 100vh; } .container { display: flex; flex-wrap: wrap; justify-content: center; flex-direction: column; align-items: center; gap: .5rem; padding: 1rem; } .is-min-m .container { flex-direction: row; } .square { width: 100px; height: 100px; background: var(--red-1); border-radius: 1rem; padding: 1rem; } </style> </head> <body> <div class="container"> <div class="square"></div> <div class="square"></div> <div class="square"></div> <div class="square"></div> <div class="square"></div> </div> <script type="module" src="./index.js"></script> </body> </html>