正在加载视频...

视频加载失败

I recently worked on a skeleton component that works with any layout automatically. You can render any real component with mock content, wrap it with a <Skeleton>, and any text, images, etc. get replaced with a shimmer effect. Waaaay easier than manually sizing rectangles. 😃

114,650 次观看 • 1 年前 •via X (Twitter)

9 条评论

Devon Govett 的头像
Devon Govett1 年前

The trick is to make the text transparent, and set `box-decoration-break: clone`. Then you can animate a background gradient to create the shimmer effect, and it applies to each line fragment separately, perfectly matching the font size and layout.

Devon Govett 的头像
Devon Govett1 年前

Another cool thing: you may have noticed in the video that all of the shimmer animations are synchronized, even across multiple elements. This is pretty easy to do with the Web Animations API, by setting the startTime property to zero. This took a while to figure out, but since startTime is relative to the time the user opened the page, setting it to zero makes all of the animations behave as if they had all started at simultaneously, no matter what time they actually start.

Mark Lenser 的头像
Mark Lenser1 年前

Anywhere we can see the code or the actual skeleton component?

Dr Lore 的头像
Dr Lore1 年前

If the content is not ready and unknown how would it work? If the content is known and ready why would show a skeleton and not the content? What am I missing?

simey 的头像
simey1 年前

Pardon if I've missed something.... But a skeleton is for when there is NO CONTENT, right? So how would making content transparent be viable? Or are you proposing that all components start with lorem ipsum and then turn off the placeholder style when hydrated?

Devon Govett 的头像
Devon Govett1 年前

Yeah exactly. Use fake content (but replaced with the shimmer) until the real content loads.

sunil pai 的头像
sunil pai1 年前

this is awesome!

Mark Ledwich 的头像
Mark Ledwich1 年前

This is a really cool idea

Nick Cairns 的头像
Nick Cairns1 年前

Beautiful

相关视频