You might think, what is 28ms? If you are a big advocate of speeding up the web and getting perfect scores on Eleventy's speedlify dashboard, it's ...
For further actions, you may consider blocking this person and/or reporting abuse
How do you handle the scrollbar?
Not sure what you mean by that?
On the auto setting it handles the load on scroll for you, or am I misunderstanding your question?
Here's my website with
content-visibility
on: 5f6c55859d590d0007b1d834--tillys-w...On the gallery page especially, watch scroll bar as you scroll up and down. It changes size and jumps about which is annoying
I see! interesting!
You can add the following property, which should be helping with the scrollbar issue:
Have a play around with that 250px it's whatever it shows upfront.
More info:
stackoverflow.com/questions/636515...
Another option could be wrapping those multiple divs into 1 big one just for the content-visibility? (Not sure, but thinking out loud)
The problem is each div can have a wildly different height based on content and the browser width (because of responsive image layouts).
I've done it on the divs because a) they are 'slices' from my CMS so it was easy, and b) because if the top of the div is visible on page load, there's no benefit.
I'm messing around with ResizeObserver and can remove the
content-visibility
once the element is rendered which fixes the issue after the initial scroll-down:(yes I'll unobserve everything
beforeDestroy
, this is just testing 😄)They aren't massive pages, so removing it isn't a problem after the initial load.
Awesome, making use of what we have for now.
Unfortionally it's a not stable function yet. I had this issue where it hides half my divs on my detail pages. :(
This version's a bit more stable: 5f6c7268798c4d000721ae4b--tillys-w...
I used the
ResizeObserver
above to work out an average height value for thecontain-intrinsic-size
too.A fun project, thanks for sharing this css trick!
That seems really great!
Scrolls nice
Hi Chris, I am quite excited with this property and seems yet to be supported by many browsers. but quite confused with your screenshots. content-visibility property skips the rendering, layouting and painting of the elements which have a direct impact on rendering performance which we can see on the rendering on summary tab. in your screenshot it has increased by 1ms from 12ms to 13ms. what is happening ?
Yes, not too sure how that works.
On paper, it should indeed cut down on that, but somehow it cuts down on other parts?
I don't quite know how it counts, but you are right it's very weird it doesn't make that less.
Yes. as this blog tells web.dev/content-visibility/ it has major impact on rendering.
The images are meant to have height attributes, so it knows what size it is before it actually loads it. In theory.
There must be a point when too much JS outweighs the benefits that it is meant to add. Ah well, it's not too bad and it's faster than the old site!
Yeah, it's always a mix of using too much JS for "simple" things and having a fast website.
Pretty hard to find a silver lining in there.
Remember to specify the height of the section you are going to hide with contain-intrinsic-size otherwise you will get jumps and scrollbar stange behaviours while scrolling your page. I needed a while to find out I missed the height property on my last project and that was the cause of the strange behaviour...
Yes indeed check the comment above, marcello had the same issue. Did not see it before but indeed valid point 🥰
Very existed about the feature and waiting to play around with it since August...
It supported only from "Chrome v85".
I still suck with Chrome v84 :(
Maybe because I am using Linux...
Ah that sucks, might be on delay indeed, mac is on 85 already.
But a very exciting feature, hopefully, it will become a mainstream one.
Anyway, very excited about your results and waiting patiently to the new version ;)
Thank you!
Lighthouse looks so good on the dark theme 🔥
And agree on 28ms, its all the small things that count the most 💯
100% I was reading this article that for every MS your slower you lose 7% of the people.
You measure it wrong. content-visibility will cut rendering time not total and you have different idle time!
Measuring the Total blocking time seems pretty reliable?
That's what it comes down to cutting on.
Check this article
web.dev/content-visibility/
Idle can be +- few seconds.
Yeah I've seen this one indeed
Still not sure, it will still show as total blocking time done in the test.
Should we then just use
content-visibility: auto
for all elements, if it has no performance downside but benefits?Good question John,
It a thin line, so doing it will have no performance downside, but you might get issues with layout shifts.
I spend some more time on it, and if I use it on everything my layout shits are too much, so decided to only put it on certain elements, and try and define the height of the element.
I tried using this for the footer and unfortunately it makes my margins right and left, reduces the page layout, why?
Hmm not sure, is your footer full width and the rest of your page not?
If that's the case it would be hidden on initial load so it won't work unless you specify the sizes.
Maybe you could setup a quick codepen, happy to take a look.
What about old browsers support? :(
What about it? haha
They don't contribute to your page speed scores, and they are not negatively affected by having this.
It will just be the same as not having it, but the point of having it is to speed up in modern browsers.
Old browsers are not fast by definition.
What about add this to html,body in main css?!
I don't think that will work, you'll end up with a flickering website and no profit since it will immediately fire is my assumption.
Your welcome, that's an awesome idea actually!
Heading back to my code-cave