init: коллекция анимаций
— Добавлен Rolling Letters Loader (текстовый барабан) — Добавлен Helix DNA Loader (3D спираль) — Добавлен Lightsaber Fight Loader (сражение на мечах) — Добавлен Pancake Cooking Loader (подбрасывание блинчика) — Добавлен Pong Game Loader (ретро-игра) — Создан общий README.md с навигационной таблицей
This commit is contained in:
Executable
+15
@@ -0,0 +1,15 @@
|
||||
# ⚔️ Lightsaber Fight Loader
|
||||
|
||||
Уникальный тематический индикатор загрузки, выполненный в стиле сражения на световых мечах. 100% Pure CSS.
|
||||
|
||||
### Особенности
|
||||
|
||||
- **Интерактивный сюжет**: Анимация включает в себя активацию мечей, само «сражение» (столкновение) и появление искр.
|
||||
- **Particle System**: Эффект искр при столкновении реализован через `@keyframes` и изменение прозрачности отдельных элементов.
|
||||
- **Star Wars Vibe**: Используются классические цвета (зеленый и красный) с соответствующим свечением (`box-shadow`).
|
||||
|
||||
### Технические детали
|
||||
|
||||
- **Lightsabers**: Рукоятки — это основные блоки, а сами лучи созданы с помощью псевдоэлементов `:before`.
|
||||
- **Fight Logic**: Анимации `fightleft` и `fightright` синхронизированы так, чтобы мечи пересекались в одной точке в определенный момент времени.
|
||||
- **Glow Effect**: Динамическое изменение `box-shadow` создает эффект пульсирующего света.
|
||||
Executable
+28
@@ -0,0 +1,28 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Lightsaber Fight Loader</title>
|
||||
<link rel="stylesheet" href="./style.css">
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<!-- partial:index.partial.html -->
|
||||
<body>
|
||||
<h1>Lightsaber Fight Loader</h1>
|
||||
<p>A little 100% CSS loader inspired in a Lightsaber fight :)</p>
|
||||
<div id="loader">
|
||||
<div class="ls-particles ls-part-1"></div>
|
||||
<div class="ls-particles ls-part-2"></div>
|
||||
<div class="ls-particles ls-part-3"></div>
|
||||
<div class="ls-particles ls-part-4"></div>
|
||||
<div class="ls-particles ls-part-5"></div>
|
||||
<div class="lightsaber ls-left ls-green"></div>
|
||||
<div class="lightsaber ls-right ls-red"></div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
<!-- partial -->
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Executable
+765
@@ -0,0 +1,765 @@
|
||||
body {
|
||||
position: relative;
|
||||
background-color: #eee;
|
||||
min-height: 380px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
text-align: center;
|
||||
font-family: Helvetica, Arial, sans-serif;
|
||||
font-weight: 200;
|
||||
color: #333;
|
||||
font-size: 26px;
|
||||
margin: 40px 0 15px;
|
||||
}
|
||||
|
||||
p {
|
||||
text-align: center;
|
||||
font-family: Helvetica, Arial, sans-serif;
|
||||
font-weight: 200;
|
||||
color: #666;
|
||||
font-size: 16px;
|
||||
margin: 10px 0;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
p.small {
|
||||
text-align: center;
|
||||
color: #999;
|
||||
font-size: 14px;
|
||||
margin: 0 0 40px;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
p a {
|
||||
text-decoration: none;
|
||||
font-weight: bold;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
p a:hover {
|
||||
color: #608A00;
|
||||
}
|
||||
|
||||
#loader {
|
||||
width: 80px;
|
||||
height: 40px;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
margin: -20px -40px;
|
||||
z-index: 1000;
|
||||
|
||||
}
|
||||
|
||||
.lightsaber {
|
||||
position: absolute;
|
||||
width: 4px;
|
||||
height: 12px;
|
||||
background-color: #666;
|
||||
border-radius: 1px;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
.lightsaber.ls-left {
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.lightsaber.ls-right {
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.lightsaber:before {
|
||||
position: absolute;
|
||||
content: ' ';
|
||||
display: block;
|
||||
width: 2px;
|
||||
height: 25px;
|
||||
max-height: 1px;
|
||||
left: 1px;
|
||||
top: 1px;
|
||||
background-color: #fff;
|
||||
border-radius: 1px;
|
||||
-webkit-transform: rotateZ(180deg);
|
||||
transform: rotateZ(180deg);
|
||||
-webkit-transform-origin: center top;
|
||||
-ms-transform-origin: center top;
|
||||
transform-origin: center top;
|
||||
}
|
||||
|
||||
.lightsaber:after {
|
||||
position: absolute;
|
||||
content: ' ';
|
||||
display: block;
|
||||
width: 2px;
|
||||
height: 2px;
|
||||
left: 1px;
|
||||
top: 4px;
|
||||
background-color: #fff;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.ls-particles {
|
||||
position: absolute;
|
||||
left: 42px;
|
||||
top: 10px;
|
||||
width: 1px;
|
||||
height: 5px;
|
||||
background-color: rgb(51, 51, 51, 0);
|
||||
-webkit-transform: rotateZ(0deg);
|
||||
transform: rotateZ(0deg);
|
||||
}
|
||||
|
||||
|
||||
.lightsaber.ls-green:before {
|
||||
-webkit-animation: showlightgreen 2s ease-in-out infinite 1s; animation: showlightgreen 2s ease-in-out infinite 1s;
|
||||
}
|
||||
|
||||
.lightsaber.ls-red:before {
|
||||
-webkit-animation: showlightred 2s ease-in-out infinite 1s; animation: showlightred 2s ease-in-out infinite 1s;
|
||||
}
|
||||
|
||||
|
||||
.lightsaber.ls-left {
|
||||
-webkit-animation: fightleft 2s ease-in-out infinite 1s; animation: fightleft 2s ease-in-out infinite 1s;
|
||||
}
|
||||
|
||||
.lightsaber.ls-right {
|
||||
-webkit-animation: fightright 2s ease-in-out infinite 1s; animation: fightright 2s ease-in-out infinite 1s;
|
||||
}
|
||||
|
||||
.ls-particles.ls-part-1 {
|
||||
-webkit-animation: particles1 2s ease-out infinite 1s; animation: particles1 2s ease-out infinite 1s;
|
||||
}
|
||||
|
||||
.ls-particles.ls-part-2 {
|
||||
-webkit-animation: particles2 2s ease-out infinite 1s; animation: particles2 2s ease-out infinite 1s;
|
||||
}
|
||||
|
||||
.ls-particles.ls-part-3 {
|
||||
-webkit-animation: particles3 2s ease-out infinite 1s; animation: particles3 2s ease-out infinite 1s;
|
||||
}
|
||||
|
||||
.ls-particles.ls-part-4 {
|
||||
-webkit-animation: particles4 2s ease-out infinite 1s; animation: particles4 2s ease-out infinite 1s;
|
||||
}
|
||||
|
||||
.ls-particles.ls-part-5 {
|
||||
-webkit-animation: particles5 2s ease-out infinite 1s; animation: particles5 2s ease-out infinite 1s;
|
||||
}
|
||||
|
||||
@-webkit-keyframes showlightgreen {
|
||||
0% {
|
||||
max-height: 0;
|
||||
box-shadow: 0 0 0 0 #87c054;
|
||||
}
|
||||
|
||||
5% {
|
||||
box-shadow: 0 0 4px 2px #87c054;
|
||||
}
|
||||
|
||||
10% {
|
||||
max-height: 22px;
|
||||
}
|
||||
|
||||
80% {
|
||||
max-height: 22px;
|
||||
}
|
||||
|
||||
85% {
|
||||
box-shadow: 0 0 4px 2px #87c054;
|
||||
}
|
||||
|
||||
100% {
|
||||
max-height: 0;
|
||||
box-shadow: 0 0 0 0 #87c054;
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes showlightred {
|
||||
0% {
|
||||
max-height: 0;
|
||||
box-shadow: 0 0 0 0 #f06363;
|
||||
}
|
||||
|
||||
20% {
|
||||
box-shadow: 0 0 4px 2px #f06363;
|
||||
}
|
||||
|
||||
25% {
|
||||
max-height: 22px;
|
||||
}
|
||||
|
||||
80% {
|
||||
max-height: 22px;
|
||||
}
|
||||
|
||||
85% {
|
||||
box-shadow: 0 0 4px 2px #f06363;
|
||||
}
|
||||
|
||||
100% {
|
||||
max-height: 0;
|
||||
box-shadow: 0 0 0 0 #f06363;
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes fightleft {
|
||||
0% {
|
||||
-webkit-transform: rotateZ(0deg);
|
||||
transform: rotateZ(0deg);
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
30% {
|
||||
-webkit-transform: rotateZ(0deg);
|
||||
transform: rotateZ(0deg);
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
40% {
|
||||
-webkit-transform: rotateZ(45deg);
|
||||
transform: rotateZ(45deg);
|
||||
left: 0;
|
||||
bottom: 2px;
|
||||
}
|
||||
|
||||
45%{
|
||||
-webkit-transform: rotateZ(65deg);
|
||||
transform: rotateZ(65deg);
|
||||
left: 0;
|
||||
}
|
||||
|
||||
65%{
|
||||
-webkit-transform: rotateZ(410deg);
|
||||
transform: rotateZ(410deg);
|
||||
left: 30px;
|
||||
bottom: 10px;
|
||||
}
|
||||
|
||||
95% {
|
||||
-webkit-transform: rotateZ(410deg);
|
||||
transform: rotateZ(410deg);
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: rotateZ(360deg);
|
||||
transform: rotateZ(360deg);
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes fightright {
|
||||
0% {
|
||||
-webkit-transform: rotateZ(0deg);
|
||||
transform: rotateZ(0deg);
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
30% {
|
||||
-webkit-transform: rotateZ(0deg);
|
||||
transform: rotateZ(0deg);
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
45% {
|
||||
-webkit-transform: rotateZ(-45deg);
|
||||
transform: rotateZ(-45deg);
|
||||
right: 0;
|
||||
bottom: 2px;
|
||||
}
|
||||
|
||||
50%{
|
||||
-webkit-transform: rotateZ(-65deg);
|
||||
transform: rotateZ(-65deg);
|
||||
right: 0;
|
||||
}
|
||||
|
||||
68%{
|
||||
-webkit-transform: rotateZ(-410deg);
|
||||
transform: rotateZ(-410deg);
|
||||
right: 27px;
|
||||
bottom: 13px;
|
||||
}
|
||||
|
||||
95% {
|
||||
-webkit-transform: rotateZ(-410deg);
|
||||
transform: rotateZ(-410deg);
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: rotateZ(-360deg);
|
||||
transform: rotateZ(-360deg);
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes particles1 {
|
||||
0% {
|
||||
background-color: rgba(51, 51, 51,0);
|
||||
-webkit-transform: rotateZ(35deg) translateY(0px);
|
||||
transform: rotateZ(35deg) translateY(0px);
|
||||
}
|
||||
|
||||
63% {
|
||||
background-color: rgba(51, 51, 51,0);
|
||||
-webkit-transform: rotateZ(35deg) translateY(0px);
|
||||
transform: rotateZ(35deg) translateY(0px);
|
||||
}
|
||||
|
||||
64% {
|
||||
background-color: rgba(51, 51, 51,1);
|
||||
-webkit-transform: rotateZ(35deg) translateY(0px);
|
||||
transform: rotateZ(35deg) translateY(0px);
|
||||
}
|
||||
|
||||
100% {
|
||||
background-color: rgba(51, 51, 51,0);
|
||||
-webkit-transform: rotateZ(35deg) translateY(-30px);
|
||||
transform: rotateZ(35deg) translateY(-30px);
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes particles2 {
|
||||
0% {
|
||||
background-color: rgba(51, 51, 51,0);
|
||||
-webkit-transform: rotateZ(-65deg) translateY(0px);
|
||||
transform: rotateZ(-65deg) translateY(0px);
|
||||
}
|
||||
|
||||
63% {
|
||||
background-color: rgba(51, 51, 51,0);
|
||||
-webkit-transform: rotateZ(-65deg) translateY(0px);
|
||||
transform: rotateZ(-65deg) translateY(0px);
|
||||
}
|
||||
|
||||
64% {
|
||||
background-color: rgba(51, 51, 51,1);
|
||||
-webkit-transform: rotateZ(-65deg) translateY(0px);
|
||||
transform: rotateZ(-65deg) translateY(0px);
|
||||
}
|
||||
|
||||
95% {
|
||||
background-color: rgba(51, 51, 51,0);
|
||||
-webkit-transform: rotateZ(-65deg) translateY(-40px);
|
||||
transform: rotateZ(-65deg) translateY(-40px);
|
||||
}
|
||||
|
||||
100% {
|
||||
background-color: rgba(51, 51, 51,0);
|
||||
-webkit-transform: rotateZ(-65deg) translateY(-40px);
|
||||
transform: rotateZ(-65deg) translateY(-40px);
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes particles3 {
|
||||
0% {
|
||||
background-color: rgba(51, 51, 51,0);
|
||||
-webkit-transform: rotateZ(-75deg) translateY(0px);
|
||||
transform: rotateZ(-75deg) translateY(0px);
|
||||
}
|
||||
|
||||
63% {
|
||||
background-color: rgba(51, 51, 51,0);
|
||||
-webkit-transform: rotateZ(-75deg) translateY(0px);
|
||||
transform: rotateZ(-75deg) translateY(0px);
|
||||
}
|
||||
|
||||
64% {
|
||||
background-color: rgba(51, 51, 51,1);
|
||||
-webkit-transform: rotateZ(-75deg) translateY(0px);
|
||||
transform: rotateZ(-75deg) translateY(0px);
|
||||
}
|
||||
|
||||
97% {
|
||||
background-color: rgba(51, 51, 51,0);
|
||||
-webkit-transform: rotateZ(-75deg) translateY(-35px);
|
||||
transform: rotateZ(-75deg) translateY(-35px);
|
||||
}
|
||||
|
||||
100% {
|
||||
background-color: rgba(51, 51, 51,0);
|
||||
-webkit-transform: rotateZ(-75deg) translateY(-35px);
|
||||
transform: rotateZ(-75deg) translateY(-35px);
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes particles4 {
|
||||
0% {
|
||||
background-color: rgba(51, 51, 51,0);
|
||||
-webkit-transform: rotateZ(-25deg) translateY(0px);
|
||||
transform: rotateZ(-25deg) translateY(0px);
|
||||
}
|
||||
|
||||
63% {
|
||||
background-color: rgba(51, 51, 51,0);
|
||||
-webkit-transform: rotateZ(-25deg) translateY(0px);
|
||||
transform: rotateZ(-25deg) translateY(0px);
|
||||
}
|
||||
|
||||
64% {
|
||||
background-color: rgba(51, 51, 51,1);
|
||||
-webkit-transform: rotateZ(-25deg) translateY(0px);
|
||||
transform: rotateZ(-25deg) translateY(0px);
|
||||
}
|
||||
|
||||
97% {
|
||||
background-color: rgba(51, 51, 51,0);
|
||||
-webkit-transform: rotateZ(-25deg) translateY(-30px);
|
||||
transform: rotateZ(-25deg) translateY(-30px);
|
||||
}
|
||||
|
||||
100% {
|
||||
background-color: rgba(51, 51, 51,0);
|
||||
-webkit-transform: rotateZ(-25deg) translateY(-30px);
|
||||
transform: rotateZ(-25deg) translateY(-30px);
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes particles5 {
|
||||
0% {
|
||||
background-color: rgba(51, 51, 51,0);
|
||||
-webkit-transform: rotateZ(65deg) translateY(0px);
|
||||
transform: rotateZ(65deg) translateY(0px);
|
||||
}
|
||||
|
||||
63% {
|
||||
background-color: rgba(51, 51, 51,0);
|
||||
-webkit-transform: rotateZ(65deg) translateY(0px);
|
||||
transform: rotateZ(65deg) translateY(0px);
|
||||
}
|
||||
|
||||
64% {
|
||||
background-color: rgba(51, 51, 51,1);
|
||||
-webkit-transform: rotateZ(65deg) translateY(0px);
|
||||
transform: rotateZ(65deg) translateY(0px);
|
||||
}
|
||||
|
||||
97% {
|
||||
background-color: rgba(51, 51, 51,0);
|
||||
-webkit-transform: rotateZ(65deg) translateY(-35px);
|
||||
transform: rotateZ(65deg) translateY(-35px);
|
||||
}
|
||||
|
||||
100% {
|
||||
background-color: rgba(51, 51, 51,0);
|
||||
-webkit-transform: rotateZ(65deg) translateY(-35px);
|
||||
transform: rotateZ(65deg) translateY(-35px);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes showlightgreen {
|
||||
0% {
|
||||
max-height: 0;
|
||||
box-shadow: 0 0 0 0 #87c054;
|
||||
}
|
||||
|
||||
5% {
|
||||
box-shadow: 0 0 4px 2px #87c054;
|
||||
}
|
||||
|
||||
10% {
|
||||
max-height: 22px;
|
||||
}
|
||||
|
||||
80% {
|
||||
max-height: 22px;
|
||||
}
|
||||
|
||||
85% {
|
||||
box-shadow: 0 0 4px 2px #87c054;
|
||||
}
|
||||
|
||||
100% {
|
||||
max-height: 0;
|
||||
box-shadow: 0 0 0 0 #87c054;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes showlightred {
|
||||
0% {
|
||||
max-height: 0;
|
||||
box-shadow: 0 0 0 0 #f06363;
|
||||
}
|
||||
|
||||
20% {
|
||||
box-shadow: 0 0 4px 2px #f06363;
|
||||
}
|
||||
|
||||
25% {
|
||||
max-height: 22px;
|
||||
}
|
||||
|
||||
80% {
|
||||
max-height: 22px;
|
||||
}
|
||||
|
||||
85% {
|
||||
box-shadow: 0 0 4px 2px #f06363;
|
||||
}
|
||||
|
||||
100% {
|
||||
max-height: 0;
|
||||
box-shadow: 0 0 0 0 #f06363;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fightleft {
|
||||
0% {
|
||||
-webkit-transform: rotateZ(0deg);
|
||||
transform: rotateZ(0deg);
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
30% {
|
||||
-webkit-transform: rotateZ(0deg);
|
||||
transform: rotateZ(0deg);
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
40% {
|
||||
-webkit-transform: rotateZ(45deg);
|
||||
transform: rotateZ(45deg);
|
||||
left: 0;
|
||||
bottom: 2px;
|
||||
}
|
||||
|
||||
45%{
|
||||
-webkit-transform: rotateZ(65deg);
|
||||
transform: rotateZ(65deg);
|
||||
left: 0;
|
||||
}
|
||||
|
||||
65%{
|
||||
-webkit-transform: rotateZ(410deg);
|
||||
transform: rotateZ(410deg);
|
||||
left: 30px;
|
||||
bottom: 10px;
|
||||
}
|
||||
|
||||
95% {
|
||||
-webkit-transform: rotateZ(410deg);
|
||||
transform: rotateZ(410deg);
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: rotateZ(360deg);
|
||||
transform: rotateZ(360deg);
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fightright {
|
||||
0% {
|
||||
-webkit-transform: rotateZ(0deg);
|
||||
transform: rotateZ(0deg);
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
30% {
|
||||
-webkit-transform: rotateZ(0deg);
|
||||
transform: rotateZ(0deg);
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
45% {
|
||||
-webkit-transform: rotateZ(-45deg);
|
||||
transform: rotateZ(-45deg);
|
||||
right: 0;
|
||||
bottom: 2px;
|
||||
}
|
||||
|
||||
50%{
|
||||
-webkit-transform: rotateZ(-65deg);
|
||||
transform: rotateZ(-65deg);
|
||||
right: 0;
|
||||
}
|
||||
|
||||
68%{
|
||||
-webkit-transform: rotateZ(-410deg);
|
||||
transform: rotateZ(-410deg);
|
||||
right: 27px;
|
||||
bottom: 13px;
|
||||
}
|
||||
|
||||
95% {
|
||||
-webkit-transform: rotateZ(-410deg);
|
||||
transform: rotateZ(-410deg);
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: rotateZ(-360deg);
|
||||
transform: rotateZ(-360deg);
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes particles1 {
|
||||
0% {
|
||||
background-color: rgba(51, 51, 51,0);
|
||||
-webkit-transform: rotateZ(35deg) translateY(0px);
|
||||
transform: rotateZ(35deg) translateY(0px);
|
||||
}
|
||||
|
||||
63% {
|
||||
background-color: rgba(51, 51, 51,0);
|
||||
-webkit-transform: rotateZ(35deg) translateY(0px);
|
||||
transform: rotateZ(35deg) translateY(0px);
|
||||
}
|
||||
|
||||
64% {
|
||||
background-color: rgba(51, 51, 51,1);
|
||||
-webkit-transform: rotateZ(35deg) translateY(0px);
|
||||
transform: rotateZ(35deg) translateY(0px);
|
||||
}
|
||||
|
||||
100% {
|
||||
background-color: rgba(51, 51, 51,0);
|
||||
-webkit-transform: rotateZ(35deg) translateY(-30px);
|
||||
transform: rotateZ(35deg) translateY(-30px);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes particles2 {
|
||||
0% {
|
||||
background-color: rgba(51, 51, 51,0);
|
||||
-webkit-transform: rotateZ(-65deg) translateY(0px);
|
||||
transform: rotateZ(-65deg) translateY(0px);
|
||||
}
|
||||
|
||||
63% {
|
||||
background-color: rgba(51, 51, 51,0);
|
||||
-webkit-transform: rotateZ(-65deg) translateY(0px);
|
||||
transform: rotateZ(-65deg) translateY(0px);
|
||||
}
|
||||
|
||||
64% {
|
||||
background-color: rgba(51, 51, 51,1);
|
||||
-webkit-transform: rotateZ(-65deg) translateY(0px);
|
||||
transform: rotateZ(-65deg) translateY(0px);
|
||||
}
|
||||
|
||||
95% {
|
||||
background-color: rgba(51, 51, 51,0);
|
||||
-webkit-transform: rotateZ(-65deg) translateY(-40px);
|
||||
transform: rotateZ(-65deg) translateY(-40px);
|
||||
}
|
||||
|
||||
100% {
|
||||
background-color: rgba(51, 51, 51,0);
|
||||
-webkit-transform: rotateZ(-65deg) translateY(-40px);
|
||||
transform: rotateZ(-65deg) translateY(-40px);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes particles3 {
|
||||
0% {
|
||||
background-color: rgba(51, 51, 51,0);
|
||||
-webkit-transform: rotateZ(-75deg) translateY(0px);
|
||||
transform: rotateZ(-75deg) translateY(0px);
|
||||
}
|
||||
|
||||
63% {
|
||||
background-color: rgba(51, 51, 51,0);
|
||||
-webkit-transform: rotateZ(-75deg) translateY(0px);
|
||||
transform: rotateZ(-75deg) translateY(0px);
|
||||
}
|
||||
|
||||
64% {
|
||||
background-color: rgba(51, 51, 51,1);
|
||||
-webkit-transform: rotateZ(-75deg) translateY(0px);
|
||||
transform: rotateZ(-75deg) translateY(0px);
|
||||
}
|
||||
|
||||
97% {
|
||||
background-color: rgba(51, 51, 51,0);
|
||||
-webkit-transform: rotateZ(-75deg) translateY(-35px);
|
||||
transform: rotateZ(-75deg) translateY(-35px);
|
||||
}
|
||||
|
||||
100% {
|
||||
background-color: rgba(51, 51, 51,0);
|
||||
-webkit-transform: rotateZ(-75deg) translateY(-35px);
|
||||
transform: rotateZ(-75deg) translateY(-35px);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes particles4 {
|
||||
0% {
|
||||
background-color: rgba(51, 51, 51,0);
|
||||
-webkit-transform: rotateZ(-25deg) translateY(0px);
|
||||
transform: rotateZ(-25deg) translateY(0px);
|
||||
}
|
||||
|
||||
63% {
|
||||
background-color: rgba(51, 51, 51,0);
|
||||
-webkit-transform: rotateZ(-25deg) translateY(0px);
|
||||
transform: rotateZ(-25deg) translateY(0px);
|
||||
}
|
||||
|
||||
64% {
|
||||
background-color: rgba(51, 51, 51,1);
|
||||
-webkit-transform: rotateZ(-25deg) translateY(0px);
|
||||
transform: rotateZ(-25deg) translateY(0px);
|
||||
}
|
||||
|
||||
97% {
|
||||
background-color: rgba(51, 51, 51,0);
|
||||
-webkit-transform: rotateZ(-25deg) translateY(-30px);
|
||||
transform: rotateZ(-25deg) translateY(-30px);
|
||||
}
|
||||
|
||||
100% {
|
||||
background-color: rgba(51, 51, 51,0);
|
||||
-webkit-transform: rotateZ(-25deg) translateY(-30px);
|
||||
transform: rotateZ(-25deg) translateY(-30px);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes particles5 {
|
||||
0% {
|
||||
background-color: rgba(51, 51, 51,0);
|
||||
-webkit-transform: rotateZ(65deg) translateY(0px);
|
||||
transform: rotateZ(65deg) translateY(0px);
|
||||
}
|
||||
|
||||
63% {
|
||||
background-color: rgba(51, 51, 51,0);
|
||||
-webkit-transform: rotateZ(65deg) translateY(0px);
|
||||
transform: rotateZ(65deg) translateY(0px);
|
||||
}
|
||||
|
||||
64% {
|
||||
background-color: rgba(51, 51, 51,1);
|
||||
-webkit-transform: rotateZ(65deg) translateY(0px);
|
||||
transform: rotateZ(65deg) translateY(0px);
|
||||
}
|
||||
|
||||
97% {
|
||||
background-color: rgba(51, 51, 51,0);
|
||||
-webkit-transform: rotateZ(65deg) translateY(-35px);
|
||||
transform: rotateZ(65deg) translateY(-35px);
|
||||
}
|
||||
|
||||
100% {
|
||||
background-color: rgba(51, 51, 51,0);
|
||||
-webkit-transform: rotateZ(65deg) translateY(-35px);
|
||||
transform: rotateZ(65deg) translateY(-35px);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user