Making gifs for ads in photoshop
Is there a way to decrease the initial load size for a gif in Photoshop?
The limit is 40kb for Initial load size, but the polite load size is 2.2mb
Is there a way to decrease the initial load size for a gif in Photoshop?
The limit is 40kb for Initial load size, but the polite load size is 2.2mb
I don't know if this is what the OP wants but here is a quick hypothetical situation and solution.
Let's say we have a 4 MB animated GIF we want to use on the website. But the filesize is too big for mobile users on limited data plans. To be kind, we want to load and serve mobile users a 20 KB static JPG instead of the animated GIF.
Add the Picture element.
<picture>: The Picture element - HTML | MDN
<picture>
<source media="(min-width: 940px)" srcset="animated.gif" type="image/gif">
<img src="static.jpg" alt="mobile alternate image">
</picture>
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.