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
2 answers

Android drawing rectangle timer with animation

I'm trying to have an animation drawing stroke rectangle: Any kickstart for this issue will be helpful. Using Views,Canvas anything. Thanks
The Butcher
  • 235
  • 2
  • 9
9
votes
5 answers

Animation for adding DOM elements with jQuery

At the moment I'm adding elements to a page on a click event using after. I'd like to animate this in some way so the new elements don't suddenly appear out of nowhere. I'm not bothered what animation method is used as long as it shows to the user…
Alex Angas
  • 59,219
  • 41
  • 137
  • 210
9
votes
2 answers

Android ScaleAnimation

I'd like to grow a view with each click using a ScaleAnimation. I've managed the effects of the animation persist after it has finished with the fillAfter, but the problem now is, the animation always starts from state 0 (as the View is defined in…
Anze
  • 491
  • 1
  • 4
  • 9
9
votes
4 answers

Scala 2D Animation library

Can anyone recommend a good 2D animation package for Scala? I prefer something which already have some basic events handling, more like JavaFX than like processing.org.
Elazar Leibovich
  • 32,750
  • 33
  • 122
  • 169
9
votes
2 answers

Animated transparent preloader image over a solid colored background

I want to show a preloader on my website before the content loads,However when i choose a animated preloader image with transparent background the edges look very jagged. How to I modify the image or is there a way to have a transparent background…
Neil
  • 2,802
  • 8
  • 34
  • 49
9
votes
3 answers

Auto scrolling with CSS

In my website [based on wordpress] , I have a project slider (technically image with some text) . But that slider is not auto scrolling , there is a button for sliding left and right . http://i47.tinypic.com/97uxz4.jpg I want to remove that button…
Shuvro Shuvro
  • 119
  • 1
  • 3
  • 10
9
votes
3 answers

css3 animations hard blink (no fade inbetween frames)

trying to flash three elements in a row with css3 animations. i've got it running, but there is a fade for each frame and i'd like to remove it. ideally each element stays visible for 1s, then hides immediately. i've tried setting the animation with…
technopeasant
  • 7,809
  • 31
  • 91
  • 149
9
votes
4 answers

Delphi custom animation - collision detection

I'm working with custom drawing / 2D animation and I'm trying to figure out how to detect when the moving object collides with a wall in the map. User holds arrow keys on the keyboard to move the object, and the map is stored as an array structure…
Jerry Dodge
  • 26,858
  • 31
  • 155
  • 327
9
votes
1 answer

How to scale and rotate during single animateWithDuration call

I am animating a UIView using the following code. This works great but how do I get it to animate scale at the same time too, I would ideally like it to scale down to 0 whilst it spins. [UIView animateWithDuration:0.4 delay:0.0…
Chris
  • 26,744
  • 48
  • 193
  • 345
9
votes
1 answer

jQuery animate width to the right

I want to animate div to slide to the right like the example below: http://jsfiddle.net/56hxy/3/ but instead of shifting the margin, I want to "squish" the width but it's not working by changing the width % ( width: '60%' ) it squishes to the…
bushdiver
  • 751
  • 3
  • 12
  • 21
9
votes
2 answers

How to animate Opacity of a DropShadowEffect?

I have a WPF project with a border using the following style. The plan is to get the glow effect to fade in when the mouse moves over the border, and fade out when it leaves.