75 lines
3.1 KiB
Markdown
75 lines
3.1 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 items-center space-x-6">
|
||
|
||
<!--
|
||
SVG-иконка: Анимированные кинетические кольца (инвертированная версия).
|
||
Размер уменьшен для гармоничного сочетания с текстом.
|
||
-->
|
||
<svg width="100" height="100" 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-6xl font-bold text-white tracking-tight">iiEasy</h1>
|
||
|
||
</div>
|
||
|
||
</body>
|
||
</html>
|
||
``` |