Questions tagged [animation]

Animation is the rapid display of a sequence of visuals in order to create an illusion of movement or change.

Animation is the rapid display of a sequence of visuals in order to create an illusion of movement or change. The elements of animation are typically images or mathematical renderings. Animation effects can be 2D or 3D.

The most common method of presenting animation is as a motion picture or video program, although there are other methods. This type of presentation is usually accomplished with a camera and a projector or a computer viewing screen which can rapidly cycle through images in a sequence. Animation can be made with either hand-rendered art, computer-generated imagery, or three-dimensional objects, e.g., puppets or clay figures, or a combination of techniques. The position of each object in any particular image relates to the position of that object in the previous and following images so that the objects each appear to fluidly move independently of one another. The viewing device displays these images in rapid succession, usually 24, 25, or 30 frames per second.

44523 questions
9
votes
7 answers

Does onload animation affect SEO?

Let's suppose I use some onload animation for my pages, for example: $(document).ready(function() { $('html.myhtml').css('overflow', 'auto').fadeTo(0, 0, function() { $(this).css('visibility', 'visible').animate({ opacity: 1 …
Anonymous
  • 4,692
  • 8
  • 61
  • 91
9
votes
4 answers

How to animate text with css font-weight property in jQuery ? normal to bold

I am trying to animation like opacity effect, which turns text bolder slowly. Tried usual animate() method but didn't work. Searched for it but coundn't find any example. Is it possible to do this? jsFiddle. jQuery: var Text =…
Barlas Apaydin
  • 7,233
  • 11
  • 55
  • 86
9
votes
2 answers

Load an animated cursor at runtime from memory

I want to load an animated cursor stored in .ani format, which is described to be a RIFF archive/container, from memory without writing the memory to a temporary file. Thus far I am able to parse the .ani file structure and load the individual…
Lawrence Kok
  • 1,568
  • 11
  • 29
9
votes
3 answers

Animated AnnotationView disappears while zooming the mapview?

I add a CABasicAnimation to the AnnotationView layer to simulate a car moving on the mapview. This works fine until I try to zoom in or out the mapview when the animation is in progress. I found the animating annotation view disappears when zooming…
9
votes
2 answers

Adding animation/transitions to Java Swing containers

I just wanted to know if there are Java libraries that allow for smooth transitions between Java Swing Containers. Suppose I have a Java GUI application with a single JFrame. Based upon user actions I would like to change the JPanel contained in my…
Ankit
  • 6,772
  • 11
  • 48
  • 84
9
votes
2 answers

WPF Animation - Animating Bezier curve points

I'm working on a project that involves drawing curved paths between two objects. Currently, I've been writing some test code to play around with bezier curves and animation. The first test is simply to move the endpoint (Point3) from the origin…
user133856
9
votes
3 answers

CSS3 Animation in IE8/9

I understand that CSS3 animations do not work in IE. I was just wondering if there is a JavaScript workaround for this problem. Here's a link to what I want to recreate in IE: http://animation.kashoo.co.uk/ Any advice would be great.
Michael Bulpitt
  • 91
  • 1
  • 1
  • 2
9
votes
1 answer

Grow from center animation with JQuery

I'm looking to have a popup div from a button. When the button is clicked, I want the popup to grow outwards from the center of the button and at the same time, slide to the center of the screen. I don't think this should be too hard but I can't…
mrK
  • 2,208
  • 4
  • 32
  • 46
9
votes
8 answers

Why is my animation leaving a trail?

I'm animating a an ImageView from the left to the right of the screen using a translate animation. The ImageView is place inside a RelativeLayout over the top of my main layout using FrameLayout. When I run the animation on the emulator everything…
Tom Martin
  • 2,498
  • 3
  • 29
  • 37
9
votes
4 answers

Animation in javascript, a starting point

I understand how JS is run and I think I understand most of the DOM but I've no idea about animation. Does anybody here know of a good guide that can explain to me how it's done in Javascript? In addition, should I even consider Javascript for…
Teifion
  • 108,121
  • 75
  • 161
  • 195
8
votes
2 answers

How to eliminate java animation flickering

I'm writing a java application which needs to scroll a waveform smoothly over the screen. I've spend ages going through various tutorials to figure out how to make this animation as smooth as possible. As far as I can see I've done all the normal…
Simon Andrews
  • 317
  • 1
  • 5
  • 10
8
votes
3 answers

Dynamically load an AnimationDrawable in a TextView

I need to replace phrases of text in a with images and then append that to a TextView. For regular Drawables this is no problem, but when the Drawable is an AnimationDrawable I don't know where and when to call .start();. This is how I append text…
T.S.
  • 1,242
  • 13
  • 22
8
votes
1 answer

What is the difference between clearAnimation() and stop() in android?

When I finishing my activity, should I use clearAnimation() or stop() on any remaining AnimationDrawable objects?
Ranjit
  • 209
  • 5
  • 12
8
votes
1 answer

How to create a walking animation in LOVE 2D

So I was wondering how to change an image of character I've created depending on the key I've pressed/am pressing? My ultimate going to to have a walking animation occuring when "d" (or any of the wasd keys) is pressed but then he stands still when…
Switchkick
  • 2,716
  • 6
  • 21
  • 28
8
votes
2 answers

GridSplitter not working after applying an animation to a grid column

I'm a beginner in wpf, today I come across an odd issue that the gridsplitter stops working if I add an animation to a grid column, below is the code snippet, it's a meaningless but quite simply test code, it does nothing except when the mouse…
gfytd
  • 1,747
  • 2
  • 24
  • 47
1 2 3
99
100