Waiting/loading transparent GIF/APNG animations [closed]

Where can I find some waiting/loading transparent GIF/APNG animations, but animation that are really transparent without some colored lines around shapes which I found on:

I need one for program.

2

4 Answers

  1. CSS/JS Based

Hope above links will be helpful.

5

I also have found it difficult to find a good waiting gif that has transparency. I took one of the ones from the 6th link on Ashish's answer and fixed it with GIMP so it didn't have white borders.

Here it is in case it's helpful to anyone:

waiting

1

Another one transparent gif loader without white border.

gif loader without white border

Here is a solution without images. only css/javascript. Have a look at the fiddle. very neat....

$(window).load(function() { $('.spinner').show(); $(".spinner").hide(); }); 

You Might Also Like