animation

WPF - WIth animation change from LinearGradientBrush to SolidColorBrush

Is it possible with an animation to change the Ellipse.Fill from a LinearGradientBrush to a SolidColorBrush or change the gradientStops within the LinearGradientBrush? ...

WPF - Animation on SelectionChanged

How would I go about changing a TabItem color from it's unselected color to it's selected color with an animation on SelectionChanged, so that both the unselected and selected TabItems change? Edit: This is how my CustomTemplate looks like. There is no animation happening at all so what have I done wrong? <Style TargetType="TabItem"> ...

Android, correct syntax for animating view switch

I have a Test Application with an empty main layout except for 2 buttons on the screen, next and previous. I have two custom views called MyView1 and MyView2 that extends View. They are animated to slide in and out using a custom animation class. Currently I have been playing with something like the following: when "previous" is clic...

How to sync animations with sound on iPad

I have a page on an iPad that is setup so there are a bunch of characters and background music. Tapping on a character will start an animation and the character will play along with the music. The problem is, the music and animations are getting out of sync and there's probably a better way. Here is how I'm doing it. • page loads • I ad...

WP7 move listboxitem beyond item borders

Hello, I have a listbox with a custom itemtemplate (stackpanels). I try to animate the items so that they all move down from the top of the listbox. The problem is that when I modify the Y coordinate, it moves the listboxitem text only inside the item's boundaries, so I cannot simulate falling items down from the top. <DataTemplate...

jQuery Ajax animation Chain

The Code $.ajax({ url: "get_portfolio_experience.php", success: function(html) { $("#inbox_content").html(html).hide().slideDown('slow'); } }); The content doesn't animate if i do not put a hide() before slideDown(). And if i put a hide() it doesn't show in IE. What should i do? ...

Breakdown of Threads used by a JApplet

I've been spending a great deal of time trying to understand this. I created a JApplet that used Thread.sleep() in a loop to animate the applet. But when I tried to run the Applet the screen stayed blank. When I draw the animations in a separate thread and call repaint, the applet works perfectly. I've seen many explanations of why th...