正在加载视频...

视频加载失败

Responsive inverted reveal scroller with CSS 🤙 img { position: fixed; animation: clip; animation-timeline: --section; animation-range: exit; } @​keyframes clip { to { clip-path: inset(100% 0 0 0); } Fix the image, animate clip on parent scroll position (--section) ✨

90,716 次观看 • 2 年前 •via X (Twitter)

10 条评论

hi 的头像
hi2 年前

how does this page look on mobile?

jhey ▲🐻🎈 的头像
jhey ▲🐻🎈2 年前

It flips into a vertical mode 😎 Sorry I should follow up with that but I'm at an event now 🙏

Chris Sev 的头像
Chris Sev2 年前

And while at Figma Config. Wild levels of productivity

jhey ▲🐻🎈 的头像
jhey ▲🐻🎈2 年前

Slides are still being baked 👨‍🍳

JayBorda 的头像
JayBorda2 年前

This is too good!

Harvey 的头像
Harvey2 年前

perfect

Natkah ⚡ 的头像
Natkah ⚡2 年前

@jh3yy can u share source code?

Kevin Chappell 的头像
Kevin Chappell2 年前

Man you got the sexiest CSS

Aryan🥝 的头像
Aryan🥝2 年前

This is really good

Eustace Njoku© 的头像
Eustace Njoku©2 年前

Your level of css is mind blowing 🤯, I wonder if I can get to this level with css

相关视频

CSS Trick 🍏 You can create that Apple-style blowout text effect with CSS scroll animations and fixed positioning ⚡️ .word { animation: blowout; animation-timeline: --section; } @​keyframes blowout { 0%, 95% { background: transparent; } to { transform: translateZ(99vh); background: #000; } } The trick here is to fix the position of some things in your layout and then animate them based on their non-fixed containers ⭐️ The .word is position: fixed within a that has a height of 200vh section { view-timeline: --section; } section:first-of-type { height: 200vh; } Every section has a view-timeline: --section that creates a scoped ViewTimeline for each section's children 🤙 As that first section scrolls out of view, you increase its opacity and move it on the z-axis towards you. That gives it the impression of scaling up 🆙 .word { animation: blowout, fade-in; animation-timing-function: ease-in; animation-fill-mode: both; animation-timeline: --section; animation-range: exit-crossing 10% exit 0%; } You can use the exit-crossing range combined with the exit range to get a timing you like ✨ Definitely experiment with these ranges to see how they play. The timing function creates interesting effects too! At the same time as the text scales up, you need to fade in the video and the text that goes with it. Again, you can use the parent container's ViewTimeline --section p, video { animation: fade-in, fade-out; animation-timing-function: ease-in; animation-fill-mode: both; animation-timeline: --section; } p { animation-range: entry 10% entry 35%, exit 0% exit 25%; } video { animation-range: entry 0% entry 25%, exit 10% exit 35%; } The timings are slightly different here. Again, you can play with them to get something that feels right for you! @​keyframes fade-in { to { opacity: 1; }} @​keyframes fade-out { to { opacity: 0; }} Theoretically, you should be able to do something with animation-direction: reverse/alternate like yesterday's demo video { animation: fade 2 both linear alternate-reverse; } The trick with this effect is all about timing and creating containers that are bigger than the content and using them to drive the animations 🏎️ The scroll-driven signature is a bonus! ✍️ Perhaps a follow-up on that one 🤙 As always, any questions, requests, etc. Hit me up! With this demo, the GreenSock ScrollTrigger code is included where the CSS scroll-driven animations API is not supported 🙌 That means you could use this demo today! CodePen.IO link below! 👇

jhey ʕ•ᴥ•ʔ

270,144 次观看 • 2 年前