Celeb Glow
updates | March 12, 2026

View multiple animated gifs at the same time? [closed]

I'm looking for a program/image viewer/gallery that I can point to a folder and see thumbnails of all the animated GIFs doing their animation.

Or something that make the GIFs animate without having to open each file.

Does such a thing exist?

1 Answer

Open notepad, put this text inside:

FOR /F %%G IN ('dir /B *.gif') DO echo ^<img src="%%G"^ width="40"^>^ %%G^<br^> >> gifs.html

Save it with name "whatever.bat" in folder where you have your gifs located, but choose "All files", not "Text file". Then navigate to your folder and doubleclick on whatever.bat. This will create another file called "gifs.html" in current directory. Doubleclick on it and you will see your gifs in web browser.

8