78 lines
3.3 KiB
Markdown
78 lines
3.3 KiB
Markdown
|
|
```html
|
|||
|
|
<!DOCTYPE html>
|
|||
|
|
<html lang="ru">
|
|||
|
|
<head>
|
|||
|
|
<meta charset="UTF-8">
|
|||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|||
|
|
<title>Анимированный логотип - iiEasy (Темная версия)</title>
|
|||
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|||
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|||
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|||
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
|
|||
|
|
<style>
|
|||
|
|
body {
|
|||
|
|
font-family: 'Inter', sans-serif;
|
|||
|
|
background-color: #000000; /* Черный фон */
|
|||
|
|
}
|
|||
|
|
</style>
|
|||
|
|
</head>
|
|||
|
|
<body class="flex items-center justify-center min-h-screen bg-black p-8">
|
|||
|
|
|
|||
|
|
<!-- Основной контейнер для центрирования контента по вертикали -->
|
|||
|
|
<div class="flex flex-col items-center text-center">
|
|||
|
|
|
|||
|
|
<!--
|
|||
|
|
SVG-иконка: Анимированные кинетические кольца (инвертированная версия).
|
|||
|
|
Все штрихи сделаны белыми для контраста с черным фоном.
|
|||
|
|
-->
|
|||
|
|
<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|||
|
|
|
|||
|
|
<!-- Внешнее кольцо -->
|
|||
|
|
<circle cx="100" cy="100" r="70" stroke="#FFFFFF" stroke-width="6" fill="none" stroke-dasharray="15 85">
|
|||
|
|
<animateTransform
|
|||
|
|
attributeName="transform"
|
|||
|
|
attributeType="XML"
|
|||
|
|
type="rotate"
|
|||
|
|
from="0 100 100"
|
|||
|
|
to="360 100 100"
|
|||
|
|
dur="10s"
|
|||
|
|
repeatCount="indefinite" />
|
|||
|
|
</circle>
|
|||
|
|
|
|||
|
|
<!-- Среднее кольцо -->
|
|||
|
|
<circle cx="100" cy="100" r="50" stroke="#FFFFFF" stroke-width="6" fill="none" stroke-dasharray="12 58" transform="rotate(30 100 100)">
|
|||
|
|
<animateTransform
|
|||
|
|
attributeName="transform"
|
|||
|
|
attributeType="XML"
|
|||
|
|
type="rotate"
|
|||
|
|
from="30 100 100"
|
|||
|
|
to="-330 100 100"
|
|||
|
|
dur="12s"
|
|||
|
|
repeatCount="indefinite" />
|
|||
|
|
</circle>
|
|||
|
|
|
|||
|
|
<!-- Внутреннее кольцо -->
|
|||
|
|
<circle cx="100" cy="100" r="30" stroke="#FFFFFF" stroke-width="6" fill="none" stroke-dasharray="8 32" transform="rotate(60 100 100)">
|
|||
|
|
<animateTransform
|
|||
|
|
attributeName="transform"
|
|||
|
|
attributeType="XML"
|
|||
|
|
type="rotate"
|
|||
|
|
from="60 100 100"
|
|||
|
|
to="420 100 100"
|
|||
|
|
dur="8s"
|
|||
|
|
repeatCount="indefinite" />
|
|||
|
|
</circle>
|
|||
|
|
|
|||
|
|
</svg>
|
|||
|
|
|
|||
|
|
<!-- Название бренда (белый текст) -->
|
|||
|
|
<h1 class="text-5xl font-bold text-white mt-8 tracking-tight">iiEasy</h1>
|
|||
|
|
|
|||
|
|
<!-- Новый слоган (светло-серый текст для легкого контраста) -->
|
|||
|
|
<p class="text-xl font-medium text-gray-300 mt-2 tracking-wide">Будущее. Просто.</p>
|
|||
|
|
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
</body>
|
|||
|
|
</html>
|
|||
|
|
```
|