1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-24 20:36:40 +07:00

animated flow

This commit is contained in:
Fedor Katurov 2019-10-24 17:24:35 +07:00
parent fa0d3c9932
commit 72337142da

View file

@ -1,9 +1,19 @@
@keyframes rise {
0% {
transform: translate(0, 0);
}
100% {
transform: translate(0, -10%);
}
}
.wrap {
width: 100%;
height: 100%;
position: relative;
background: $content_bg;
border-radius: $cell_radius;
overflow: hidden;
}
.hero {
@ -11,7 +21,7 @@
top: 0;
left: 0;
width: 100%;
height: 100%;
height: 150%;
display: none;
transition: opacity 2s;
background: 50% 50% no-repeat;
@ -20,6 +30,7 @@
z-index: 2;
opacity: 0;
cursor: pointer;
transform: translate(0, -10%);
&::after {
content: ' ';
@ -46,6 +57,8 @@
&.is_active {
opacity: 1;
z-index: 3;
will-change: transform;
animation: rise 5s forwards;
}
}