D0r11s (обсуждение | вклад) м (test) |
D0r11s (обсуждение | вклад) м (test) |
||
| Строка 24: | Строка 24: | ||
width: 130px; | width: 130px; | ||
height: 130px; | height: 130px; | ||
border-image: linear-gradient(#332d2d, #080707) 30; | |||
transition: width 1s cubic-bezier(0, 0, 1, 1) | transition: width 1s cubic-bezier(0, 0, 1, 1) 50ms; | ||
} | } | ||
.block-animation:hover { | .block-animation:hover { | ||
width: | width: 500px; | ||
} | } | ||
Версия от 20:45, 2 августа 2024
@keyframes animationOne {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes text1 {
0% {
color: #000;
margin-bottom: -40px;
}
85% {
letter-spacing: 8px;
margin-bottom: -40px;
}
}
.block-animation {
width: 130px;
height: 130px;
border-image: linear-gradient(#332d2d, #080707) 30;
transition: width 1s cubic-bezier(0, 0, 1, 1) 50ms;
}
.block-animation:hover {
width: 500px;
}