Fix Page transitions by using a hacky FOUC trick

Seems to work though!
This commit is contained in:
2022-01-18 14:22:26 +01:00
parent b5b4b126c9
commit cffef1835f
5 changed files with 82 additions and 58 deletions

View File

@@ -1,5 +1,5 @@
.scrolling-title {
transform: translate3d(calc(-1px * var(--parallax-x) * 100), 0, 0);
transform: translate3d(var(--parallax-x), 0, 0);
transition: transform 1.2s var(--ease-quart);
will-change: transform;
}