1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 12:56:41 +07:00

simple drag

This commit is contained in:
Fedor Katurov 2019-10-16 17:18:39 +07:00
parent 1b6a81d27c
commit f42953b460
3 changed files with 208 additions and 2 deletions

View file

@ -0,0 +1,56 @@
.wrap {
overflow: hidden;
position: relative;
min-width: 0;
width: 100%;
&:global(.is_animated) {
.image_container {
transition: height 0.5s;
}
.image_wrap {
transition: opacity 0.5s;
}
}
}
.image_container {
background: $node_image_bg;
border-radius: $panel_radius 0 0 $panel_radius;
display: flex;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
user-select: none;
.image {
max-height: 960px;
max-width: 100%;
opacity: 1;
border-radius: $radius $radius 0 0;
}
}
.image_wrap {
width: 100%;
// top: 0;
// left: 0;
// opacity: 0;
pointer-events: none;
touch-action: none;
z-index: 1;
display: flex;
align-items: center;
justify-content: center;
&:global(.is_active) {
opacity: 1;
}
}
.placeholder {
background: red;
height: 320px;
}