| 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/page-transitions/ |
Upload File : |
// f7-Push
.router-transition-f7-push-forward {
.page {
pointer-events: none;
}
.page-next {
animation: f7-push-next-to-current var(--f7-page-push-transition-duration) forwards;
}
.page-current {
animation: f7-push-current-to-prev var(--f7-page-push-transition-duration) forwards;
}
}
.router-transition-f7-push-backward {
.page {
pointer-events: none;
}
.page-current {
animation: f7-push-current-to-next var(--f7-page-push-transition-duration) forwards;
}
.page-previous {
animation: f7-push-prev-to-current var(--f7-page-push-transition-duration) forwards;
}
}
@keyframes f7-push-next-to-current {
from {
.ltr({
transform: translateX(100%);
});
.rtl({
transform: translateX(-100%);
});
}
to {
transform: translateX(0%);
}
}
@keyframes f7-push-current-to-next {
from {
transform: translateX(0%);
}
to {
.ltr({
transform: translateX(100%);
});
.rtl({
transform: translateX(-100%);
});
}
}
@keyframes f7-push-current-to-prev {
from {
transform: translateX(0%);
}
to {
.ltr({
transform: translateX(-100%);
});
.rtl({
transform: translateX(100%);
});
}
}
@keyframes f7-push-prev-to-current {
from {
.ltr({
transform: translateX(-100%);
});
.rtl({
transform: translateX(100%);
});
}
to {
transform: translateX(-0%);
}
}