7 Fresh Links on Performance For March 2022
I have a handful of good links to articles about performance that are burning a hole in my bookmarks folder, and wanna drop them here to share.…
I have a handful of good links to articles about performance that are burning a hole in my bookmarks folder, and wanna drop them here to share.…
Stoyan is absolutely correct. As much as we all love CSS, it’s still an important player in how websites load and using less of it is a good thing. He has a neat new bookmarklet called CSS Me Not …
I recently noticed that animations in Safari were stuttering pretty badly on my M1 powered 2020 MacBook Air, and dove in to figure out why.
The why:
…This wasn’t a bug. This was a feature.
I’ve got some blind spots in CSS-related performance things. One example is the will-change
property. It’s a good name. You’re telling the browser some particular property (or the scroll-position
or content) uh, will, change:
.el {
will-change: opacity;
… Kendo UI makes it possible to go from a basic idea to a full-fledged app, thanks to a massive component library. We’re talking well over 100 components that are ready for you to drop into your app at will, whether …
KendoReact can save you boatloads of time because it offers pre-built componentry you can use in your app right away. They look nice, but more importantly, they are easily themeable, so they look however you need them to look. And …
This is some bonafide CSS trickery from Harry that gives you some generic performance advice based on what it sees in your <head>
element.
First, it’s possible to make a <style
block visible like any other element by changing the …
I recently blogged about how images are hard and it ended up being a big ol’ checklist of things that you could/should think about and implement when placing images on websites.
I think it’s encouraging to see frameworks — these …
Here’s Atif Afzal on using a <div>
that is permanently on the page where tooltips are added/removed and how they perform vastly better than plopping those same tooltips right into the <body>
. It’s not really discussed, but the reason …
Cache-Control
header is an awfully potent ingredient in web performance. I mis-read the title at first and was waiting to read about HTML caching. Hugh covers it a bit