Questions tagged [animated-gif]

An animated .GIF image is an image file which displays an animation.

This tag should be used in questions asking for help using an animated GIF in their applications, modifying an animated GIF in code, or reading pixels from an animated GIF in code.

Useful links

Pages where animated GIFs can be created

1436 questions
0
votes
1 answer

Using stop() to stop the jquery lag

I know I am supposed to use $(selector).stop().animate(); somewhere but I am not sure how I can stop the lag when you go off and on it really fast it will keep animating. Here is my code, if you could tell me what to put I would be set (keep in mind…
Nerd Furyz
  • 45
  • 1
  • 4
0
votes
1 answer

Animated gif texture in 3ds max

and thanks in advance. I don't know what I am doing wrong, I have created an animated .gif in Photoshop to use as a texture map for a model in 3ds max 2010. The Texture displays well enough in max and in renders, however it is not animated. I had it…
user2636138
  • 1
  • 1
  • 1
0
votes
1 answer

Loading animated gif in iPad app

I have use the following code for displaying a loading animated gif however it does not appear to be working properly. The NSArray is correctly loaded with the set of images and the first image loads but no animation occurs (the images are…
RGriffiths
  • 5,722
  • 18
  • 72
  • 120
0
votes
1 answer

How to scale an image and kepp the lines thickness?

I have a line art, an animated transparent gif on page, made in photoshop. #img01{ max-width:79%; max-height:79%; margin-top:3vh; } On small screen size (mobile), thickness of lines is too thin, and on screens over 1024px the lines…
qadenza
  • 9,025
  • 18
  • 73
  • 126
0
votes
1 answer

Finish the animation before displaying text

ImageIcon v = new ImageIcon(getClass().getResource("/Sample1/Image1.gif")); v.getImage().flush(); jLabel1.setIcon(v); JLabel2.setText("Sample"); How to finish the animation first before changing the text of jLabel2?
Square Ponge
  • 702
  • 2
  • 10
  • 26
0
votes
1 answer

C# Drawing.Imaging dropping GIF frames if they are identical

I need to load GIF animations and convert them frame by frame to bitmaps. To do that, I am extracting my GIF file frame by frame using Drawing.Imaging library and then casting each frame to bitmap. Everything works just fine except the times when…
P K
  • 5
  • 1
  • 4
0
votes
0 answers

iOS Display rich text contains animated GIF

I want to display a html contains an image link. And the image is an animated GIF. I want to display the rich content and let the GIF be animated. Is there any solution to accomplish it? Thanks.
shiami
  • 7,174
  • 16
  • 53
  • 68
0
votes
1 answer

Modify GIF89A file header

Is there any library, which can take existing animated GIF file and set/unset loop count and loop flag? I have couple of GIF files produced by FFMPEG, and it seems not possible to set loop/loop count flags to FFMPEG. So need some sort of…
jdevelop
  • 12,176
  • 10
  • 56
  • 112
0
votes
0 answers

Play or replace GIF image on click with jQuery and start from beginning

I have a website with images on it. Some of the images are animated GIF images. What I've done is to show a static image of the GIF and on a click event, the actual GIF images is displayed. Here is my code: JQuery $(".theimage").click(function()…
G.Vasilev
  • 83
  • 3
  • 12
0
votes
1 answer

Gif library for ruby/jruby?

I'm wondering if there are any jruby libraries that support creating a gif pixel by pixel, like chunky_png. Pure ruby would be nice, but anything will do. Rubygems doesn't seem to have one. I am aware of rmagick4j, but the library simply doesn't…
Shelvacu
  • 4,245
  • 25
  • 44
0
votes
1 answer

concurrent access of same window

I am using jsf 1.2 with a4j. when any AJAX request is generated GIF animated images are being displayed on the page.
rishi
  • 1,792
  • 5
  • 31
  • 63
0
votes
4 answers

faking a Gif with javascript/jquery

I have a function that hides and shows divs on scroll based on pageY position, but I also need the ability to have it automatically hide and show divs in order(only the ones with children), sort of like a fake animated Gif, looping forever. I tried…
mmm
  • 2,272
  • 3
  • 25
  • 41
0
votes
0 answers

Animated Image not show in latest version of Chrome

I am using chrome Version 27.0.1453.94 m. I have an animated .gif image on my webpage. The url showing image in firefox and IE but not showing in chrome. Example see here
Ishan Jain
  • 8,063
  • 9
  • 48
  • 75
0
votes
1 answer

How to flatten an animated GIF in a static image using Gmagick

What I want to do is to save only the first frame of an animated GIF in static image (non animated gif). Using Gmagick 1.1.2RC1 and GraphicMagick 3.1.18 I read heaps of posts talking about it. Some says that it was working in the previous version of…
maxwell2022
  • 2,818
  • 5
  • 41
  • 60
0
votes
1 answer

Coding Animated GIFS into Email

I'm working on a new email marketing campaign for my current employer that involves some small animated GIFs. I know they work on most clients except Outlook 2007 and 2010; so I'm wondering if there's a way to dynamically code a separate static…