| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/framework7/node_modules/framework7/components/page/ |
Upload File : |
.md {
.page-previous {
transform: translate3d(0, -20px, 0);
}
.page-next {
pointer-events: none;
transform: translate3d(0, 128px, 0);
opacity: 0;
&.page-next-on-right {
.ltr({
transform: translate3d(100%, 0, 0);
opacity: 1;
});
.rtl({
transform: translate3d(-100%, 0, 0);
opacity: 1;
});
}
}
// Animations
.router-transition-forward {
.page-next {
opacity: 1;
animation: md-page-next-to-current var(--f7-page-transition-duration) forwards
cubic-bezier(0, 0.8, 0.3, 1);
}
.page-current {
animation: md-page-current-to-previous var(--f7-page-transition-duration) forwards
cubic-bezier(0, 0.8, 0.3, 1);
}
}
.router-transition-backward {
.page-current {
animation:
md-page-current-to-next calc(var(--f7-page-transition-duration) / 4) forwards
cubic-bezier(0.8, 0, 1, 0.3),
md-page-current-to-next-opacity 0ms calc(var(--f7-page-transition-duration) / 4) forwards;
}
.page-previous {
animation: md-page-previous-to-current var(--f7-page-transition-duration) forwards;
}
}
}
@keyframes md-page-next-to-current {
from {
transform: translate3d(0, 128px, 0);
}
to {
transform: translate3d(0, 0px, 0);
}
}
@keyframes md-page-current-to-next {
from {
transform: translate3d(0, 0, 0);
}
to {
transform: translate3d(0, 128px, 0);
}
}
@keyframes md-page-current-to-next-opacity {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
@keyframes md-page-current-to-previous {
from {
transform: translate3d(0, 0, 0);
}
to {
transform: translate3d(0, -20px, 0);
}
}
@keyframes md-page-previous-to-current {
from {
transform: translate3d(0, -20px, 0);
}
to {
transform: translate3d(0, 0px, 0);
}
}