Created
February 19, 2024 15:44
-
-
Save nextab/23d2f9bda97de861e8799a625c3bac5a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* #region Ellipsis on the right */ | |
.ellipsis-right { | |
&::after { | |
background: url("/wp-content/uploads/2022/02/ellipsis-journey.svg"); | |
bottom: -40px; | |
content: ""; | |
height: 600px; | |
position: absolute; | |
right: -320px; | |
transform: rotate(235deg); | |
transition: all 300ms ease; | |
width: 600px; | |
} | |
} | |
@for $i from 0 to 50 { | |
body[data-scroll-step="#{$i}"] { | |
.ellipsis-right::after { | |
transform: rotate(#{235 - ($i * 2)}deg); | |
} | |
.about-me-3-cols::before { | |
transform: rotate(#{$i - 30}deg); | |
} | |
} | |
} | |
/* #endregion */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment