Tagged Questions

4
votes
3answers
116 views

jQuery CSS Keyframing

Trying to make a simple repeated keyframed animation with jQuery $(document).ready(function() { $('body').mouseover(function() { var animateloop = 0; $(this).mouseout(function(){ ...
4
votes
1answer
789 views

haXe: Keyframe animation without frames

I would like to do simple (looping) animation (moving, changing alpha etc) in haXe (flash9). I don't have anything that resembles frames in my library, just single frame assets. Since I am a ...
3
votes
1answer
588 views

How to trigger event in silverlight animation by keyframe?

I need to call a method when the animation gets to a certain keyframe. Is it possible to trigger an event when an animation gets to a certain keyframe? If not is there a better way of triggering an ...
2
votes
1answer
85 views

Place to share cool CSS3 tricks [closed]

I just wrote a pure CSS3 DIV slider, It uses @keyframe and other CSS tricks to slide divs. On the hover, the slide pauses. You can embed youtube videos, link images, embed text etc. It isn't ver user ...
2
votes
1answer
410 views

Is it possible to animate a LinearGradientBrush in WPF?

Is it possible to animate the StartPoint or EndPoint of a LinearGradientBrush? If so, what is the type of the Storyboard object used to animate the Points, as when I try the following I get "0,1" is ...
1
vote
1answer
214 views

How do you reverse css keyframe animation in webkit?

I have a control that I want to transition between two locations following a keyframe animation. Is there a way to use the same keyframe but in reverse? Also, is there a way to stop the animation, ...
1
vote
1answer
209 views

Approaches for animating a C# property over time?

I'm currently trying to animate a bunch of public properties on certain objects. Usually they are of type float or vectors of floats (the type is known at compile-time). I want to be able to: assign ...
1
vote
0answers
69 views

How to organize data for an animation program

I'm trying to write an animation program, but I can not figure out a good way to seek to a frame and have the program "know" what objects are currently there and what are the nearest keyframes for ...
1
vote
2answers
304 views

More efficient keyframe animation in Flash CS4/5

I'm doing a lot of keyframe masking of vines/flowers for a project I'm working on, and it looks really good but is, of course, very time consuming. I'm curious if there's any techniques/tools for ...
1
vote
1answer
550 views

How to animate “typing” text in SketchFlow?

In Microsoft's Expression Blend 3 SketchFlow application. How would you go about animating the typing of text, ideally in staged character by character fashion. As if the user is typing it. An ...
0
votes
1answer
35 views

WPF Keyframe animation was working but isn't right now

I have a WPF Custom Control I defined in a WPF Control Library project called Flasher. Basically, its a rectangle whose Fill property flashes back and forth between two colors, like a blinking light ...
0
votes
1answer
106 views

Flash like Animation ONLY Library for C/C++ (no GUI)

I'm looking for an opensource C/C++ library for managing keyframe or time based animation. I already have a graphic layer, so it doesn't need to do any drawing, I just want it to manage tweening or ...
0
votes
2answers
155 views

CSS Animation: Load second keyframe after first

I study CSS Animations and I have a question. This is my example: http://jsfiddle.net/MBJbB/ Note: Work only in WebKit browsers. I have 2 keyframes. I set "first" to repeat 3 times. After running ...
0
votes
0answers
210 views

WPF Expanding/Collapsing animation issue (using spline key frame) with height of container control

Here are two images that display my problem: ------------------------------------------------------- As you can see in the second image, the sub items have been collapsed (with an animation), but ...
0
votes
1answer
123 views

How do I change a background position with css3 animation?

Lets say I have a div element, with a background in position: 0%; how would I change the position to e.g position: 100%; but with keyframes on hover I can't seem to use keyframes properly, it never ...
0
votes
0answers
65 views

Storing Animation Data in XML

so I'm trying to store animations in a way that I can reuse them with other images. I want to store the position of each node in a keyframe and use interpolation in the animator to make it look nice ...
0
votes
1answer
481 views

Animation in Silverlight using a dynamic value

I want to translate an object on its Y-axis over time in Silverlight, but its height is not constant, so I'd like to be able to change the second line of the following from: ...