mirror of
https://github.com/wassname/talk.git
synced 2026-07-12 07:30:27 +08:00
29 lines
422 B
CSS
29 lines
422 B
CSS
.root {
|
|
position: relative;
|
|
}
|
|
|
|
.bodyLeave {
|
|
position: absolute;
|
|
width: 100%;
|
|
top: 0;
|
|
background-color: white;
|
|
opacity: 1.0;
|
|
transition: background 400ms, opacity 800ms 1600ms;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.bodyLeaveActive {
|
|
opacity: 0;
|
|
background-color: rgba(255,255,0, 0.2);
|
|
}
|
|
|
|
.bodyEnter {
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.bodyEnterActive {
|
|
opacity: 1.0;
|
|
transition: opacity 800ms 2400ms;
|
|
}
|