Post #2898679
2026-04-13 11:06 UTC
@normplum@fosstodon.org I don't know the specifics off the top of my head, but most modern browsers will delay loading images until they're shown, so if you just keep them in a 'display: none' container, you should see that they don't actually get loaded until you page to them. If that doesn't work, you can just store the image URLs in a JavaScript array or some other tag, and then render them as actual image tags only when the user is on that page
Replies (1)
-
@normplum@fosstodon.org 2026-04-13 11:27
@mateus@tech.lgbt Ah, gotcha, thanks.