DEV Community

Discussion on: How to create a 3 dimensional object with CSS only

Collapse
 
karataev profile image
Eugene Karataev

Great stuff!

Side note about images. I like funny gifs. But if a gif is near a text block I want to read, I'm always distracted by the animation. In this case I try to scroll out gifs from the viewport to avoid distraction.
If there are several gifs around and it's impossible to have animation-free viewport, I open the dev tools, execute document.querySelectorAll('img[src$=".gif"]').forEach(el => el.remove()) to remove gifs from the page and continue reading without distraction. Maybe it'll be helpful for anyone with similar feelings about animated images 😂