tagged [animation]

How do you make an element "flash" in jQuery

How do you make an element "flash" in jQuery I'm brand new to jQuery and have some experience using Prototype. In Prototype, there is a method to "flash" an element — ie. briefly highlight it in anoth...

Animate height of groupbox from 0 to auto

Animate height of groupbox from 0 to auto I have groupboxes acting like expanders in my application. When I need to colapse a groupbox I set its height equal to 0. when I need to expand it I set it's ...

2 Jul at 00:46

jQuery toggle animation

jQuery toggle animation I have this jQuery: ``` $(document).ready(function() { $("#panel").hide(); $('.login').toggle( function() { $('#panel').animate({ height: "150", padding:"20px 0", ...

31 May at 02:25

How to provide animation when calling another activity in Android?

How to provide animation when calling another activity in Android? I have two Activities A and B. I want to have the shrink Animation when Activity A calls B and maximize animation when Activity B cal...

2 Jul at 03:59

JQUERY, scrollTo, after scrolling down, the page won't let me scroll up for a second... Y?

JQUERY, scrollTo, after scrolling down, the page won't let me scroll up for a second... Y? I'm using the following JQUERY to attach an even to a link in the header, which essentially scrolls to the bo...

Wpf animate background color

Wpf animate background color I need help in taking right decision. I need to animate a background color of my user control when some event happens. When it is, I want to change the background just for...

Background property does not point to a dependencyobject in path '(0).(1)'

Background property does not point to a dependencyobject in path '(0).(1)' I wrote this code and got an exception: > Background property does not point to a dependencyobject in path '(0).(1)' I saw th...

24 Oct at 07:36

Change the speed of animation at runtime in unity c#

Change the speed of animation at runtime in unity c# The default speed of animation in unity is . I set the default speed value of animation to . And during runtime of program, I want the speed of an...

16 Sep at 06:20

Android Left to Right slide animation

Android Left to Right slide animation I have three activities whose launch modes are single instance. Using `onfling()`, I swing them left and right. The problem is when I swipe right to left the slid...

17 Nov at 01:43

How to reverse an animation on mouse out after hover

How to reverse an animation on mouse out after hover So, it is possible to have reverse animation on mouse out such as: but, when using @keyframes animation, I couldn't get it to work, e.g: ``` .class...

20 Nov at 16:25

How to animate Margin property in WPF

How to animate Margin property in WPF I want to move animate an rectangle object to move it in x-axis. I am new to WPF animation, started out with the following: ```

4 Feb at 08:19

Fade In Fade Out Android Animation in Java

Fade In Fade Out Android Animation in Java I want to have a 2 second animation of an ImageView that spends 1000ms fading in and then 1000ms fading out. Here's what I have so far in my ImageView constr...

1 May at 18:34

UserControl Animate Button's Background

UserControl Animate Button's Background I'd like to animate a `Button`'s `Background` if the Mouse is over the `Button`. The `Button`'s `Background` is bound to a custom dependency property I've creat...

Delay with touch events

Delay with touch events We have an app in AppStore [Bust~A~Spook](http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=292436957) we had an issue with. When you tap the screen we use CALa...

3 Nov at 20:30

Cancel a UIView animation?

Cancel a UIView animation? Is it possible to cancel a `UIView` animation while it is in progress? Or would I have to drop to the CA level? i.e. I've done something like this (maybe setting an end anim...

31 Aug at 05:8

Jquery fadeIn And fadeOut problem using hover over a div

Jquery fadeIn And fadeOut problem using hover over a div I have this code: The problem is that when I move the mouse

16 Jul at 19:51

Apply animation on WPF control visibility change

Apply animation on WPF control visibility change My xaml is ``` Down

13 Aug at 05:28

Fading out a wpf window on close

Fading out a wpf window on close I want to fade a window in/out in my application. Fading in occurs on `Window.Loaded` and I wanted to fade out on close (`Window.Closed` or `Window.Closing`). Fading i...

Matplotlib-Animation "No MovieWriters Available"

Matplotlib-Animation "No MovieWriters Available" Under Linux, I've been checking out matplotlib's animation class, and it seems to work except that I cant initialise the movie writer to write out the ...

How to apply a RenderTransform.TranslateTransform on a Grid using a Storyboard?

How to apply a RenderTransform.TranslateTransform on a Grid using a Storyboard? In my application resources I have defined the following `Storyboard`: `App.xaml` ```

25 Mar at 10:37

How to bring view in front of everything?

How to bring view in front of everything? I have activity and a lot of widgets on it, some of them have animations and because of the animations some of the widgets are moving (translating) one over a...

Brush to Brush Animation

Brush to Brush Animation I managed to find out how to make a WPF animation - transition between two colors. It's called ColorAnimation and works well. ``` ColorAnimation animation = new ColorAnimation...

23 Feb at 10:13

Android: Expand/collapse animation

Android: Expand/collapse animation Let's say I have a vertical linearLayout with : By default v1 has visibily = GONE. I would like to show v1 with an expand animation and push down v2 at the same time...

23 Mar at 21:15

CSS3 Continuous Rotate Animation (Just like a loading sundial)

CSS3 Continuous Rotate Animation (Just like a loading sundial) I am trying to replicate an Apple style activity indicator (sundial loading icon) by using a PNG and CSS3 animation. I have the image rot...

4 Aug at 15:58

How do I create a rotate animation on an image object using c# code only (inside a WPF window)

How do I create a rotate animation on an image object using c# code only (inside a WPF window) I have a couple of open questions relating to the same sort of thing, I am quite new to WPF but experienc...

23 May at 10:29