Skip to content

Instantly share code, notes, and snippets.

@CodeMyUI
Last active April 20, 2020 23:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CodeMyUI/09f09a90df5db9c055391947357b9987 to your computer and use it in GitHub Desktop.
Save CodeMyUI/09f09a90df5db9c055391947357b9987 to your computer and use it in GitHub Desktop.
Directionally blooming words 🎨
- const directions = ['North', 'North East', 'East', 'South East', 'South', 'South West', 'West', 'North West']
.container
each direction in directions
.page
.text(data-word=direction, data-scroll='out', data-splitting='', class=`text--${direction.toLowerCase().replace(' ', '-')}`)= direction
const { Splitting } = window
Splitting()
window.ScrollOut({
scrollingElement: '.container',
targets: '.text',
})
<script src="https://unpkg.com/splitting/dist/splitting.js"></script>
<script src="https://unpkg.com/scroll-out/dist/scroll-out.min.js"></script>
:root
--speed 1
--delay 0.5
--font-size 60
body
background #111
min-height 100vh
overflow-x hidden
@media(min-width 768px)
--font-size 100
.page
height 100vh
width 100vw
scroll-snap-align center
font-size calc(var(--font-size) * 1px)
font-weight bold
display flex
align-items center
justify-content center
font-variant small-caps
position relative
.text
--clip 0
position relative
&--north
--origin 50% 0
&--north-east
--origin 100% 0
&--east
--origin 100% 50%
&--south-east
--origin 100% 100%
&--south
--origin 50% 100%
&--south-west
--origin 0% 100%
&--west
--origin 0% 50%
&--north-west
--origin 0% 0%
& > span
transition -webkit-clip-path calc(var(--speed) * 1s) calc(var(--delay) * 1s) ease, clip-path calc(var(--speed) * 1s) calc(var(--delay) * 1s) ease
$clip = circle(calc(var(--clip) * 1%) at var(--origin))
-webkit-clip-path $clip
clip-path $clip
&[data-scroll="in"] > span
--clip 150
&:before
content attr(data-word)
position absolute
color rgba(255, 255, 255, 0.15)
top 0
left 0
font-size calc(var(--font-size) * 1px)
z-index -1
/**
* Themeing
*/
.container
height 100vh
overflow auto
overflow-x hidden
// Cant include nice scrolling as it
// introduces a weird rendering error...
// -webkit-overflow-scrolling touch
scroll-snap-type y mandatory
.char
color #fff
.text--north .char:nth-of-type(1)
color #e6261f
.text--north-east .char:nth-of-type(1)
color #eb7532
.text--east .char:nth-of-type(1)
color #f7d038
.text--south-east .char:nth-of-type(1)
color #a3e048
.text--south .char:nth-of-type(1)
color #49da9a
.text--south-west .char:nth-of-type(1)
color #34bbe6
.text--west .char:nth-of-type(1)
color #4355db
.text--north-west .char:nth-of-type(1)
color #e6261f
.text--north-west .char:nth-of-type(2)
color #f7d038
.text--north-west .char:nth-of-type(3)
color #49da9a
.text--north-west .char:nth-of-type(4)
color #4355db
.text--north-west .char:nth-of-type(5)
color #d23be7
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment