Create a component for scrolling huge titles

This commit is contained in:
2021-11-16 22:35:42 +01:00
parent 4b05186662
commit ed62030b29
8 changed files with 111 additions and 13 deletions

View File

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