active questions tagged animation - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T08:12:44Zhttp://stackoverflow.com/feeds/tag/animationhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1886158/how-do-i-translate-parabolically0How do I translate parabolically?bpapa2009-12-11T06:18:01Z2009-12-11T07:44:25Z
<p>I'm working on an iPhone app with some simple animation. </p>
<p>I have a view I want to translate, but not along a line. I want to translate it parabolically. Imagine that I am animating a car moving along a curved road.</p>
<p>I know I can set the transform properly to an instance of CGAffineTransform</p>
<p>Problem is, I have no idea how to create the transform. I know how to scale, translate, etc. but how do I translate parabolically? Is it even possible?</p>
http://stackoverflow.com/questions/1885620/animation-in-a-listbox0Animation in a ListBoxZach2009-12-11T03:28:41Z2009-12-11T03:28:41Z
<p>Hi,</p>
<p>I'd like to animate items as they come into and are removed from a listbox. Essentially, I want the newly added item to animate to its position at the top of the list (from some predetermined coordinate), and have the items in the list animate down a "step" to make room. </p>
<p>I started trying to solve this problem by inheriting form listbox and adding an ItemAdded routed event from which I could trigger the animation. I used a Canvas as my ItemsPanelTemplate. The code below throws a "Cannot freeze this Storyboard timeline tree for use across threads." error message, which is extraordinarily baffling to me. Am I going about this all wrong? This seems like something WPF/XAML would be perfect for, but I'm lost. </p>
<p>Below is the XAML and Converter code. The Converter calculates the Canvas.Top position based on the item's index in the list.</p>
<p>
</p>
<pre><code> </Canvas>
</ItemsPanelTemplate>
</zwk:MyListBox.ItemsPanel>
<zwk:MyListBox.ItemContainerStyle>
<Style TargetType="{x:Type ListBoxItem}">
<Style.Triggers>
<EventTrigger RoutedEvent="zwk:MyListBox.ItemAdded">
<BeginStoryboard>
<Storyboard>
<DoubleAnimation Storyboard.TargetProperty="Canvas.Top" From="0"
To="{Binding Path=., Converter={StaticResource myConverter}}" >
</DoubleAnimation>
</Storyboard>
</BeginStoryboard>
</EventTrigger>
</Style.Triggers>
<Setter Property="Canvas.Left" Value="10"/>
</Style>
</zwk:MyListBox.ItemContainerStyle>
<zwk:MyListBox.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding Value}"></TextBlock>
</DataTemplate>
</zwk:MyListBox.ItemTemplate>
</zwk:MyListBox>
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
return ViewModel.Items.IndexOf((MyListItem)value) * 10;
}
</code></pre>
http://stackoverflow.com/questions/1884103/iphone-sync-sound-and-animation0iPhone: sync sound and animationleon2009-12-10T21:19:30Z2009-12-10T21:19:30Z
<p>Hi,
I am sure this is a very basic question. I would appreciate if someone can point me to the right directions.</p>
<p>I want to play a sound (say a song) and then perform an animation based on the beat of the sound. I guess it would be similar to creating visualizations that many media players have.</p>
<p>What classes/samples should I be looking for?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1882556/emulating-animation-with-panels-on-net-compact-framework0Emulating animation with panels on .Net Compact Framework.VansFannel2009-12-10T17:19:20Z2009-12-10T17:19:20Z
<p>Hello!</p>
<p>I'm developing a <strong>Windows Mobile 5.0 or above</strong> with <strong>.Net Compact Framewor 2.0 SP2</strong> and <strong>C#</strong>.</p>
<p>I'm trying to "animate" five panels changing their locations on a Timer_Tick event but these panels move very bad. They move like jumping.</p>
<p>What I'm doing wrong?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1880491/help-when-playing-a-sound-the-animation-freeze-pauses0help! when playing a sound the animation freeze\pausesnil2009-12-10T11:55:31Z2009-12-10T13:26:55Z
<p>basically whenever i play a sound the animation slowing down or pauses, what to do ???</p>
<p>sound size 20kb mp3.</p>
<p>animation size 5kb png.</p>
<p>code:</p>
<pre><code>- (void) startAnimation {
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:0.8];
CGPoint destination = CGPointMake(152,20);
pink.center = destination;
[UIView commitAnimations];
[soundPink play];
}
- (void) initSoundResources {
soundPink = [[APlayer alloc] initWithFile:@"pink" type:@"mp3"];
soundPink = 0.4;
}
</code></pre>
http://stackoverflow.com/questions/1878531/bone-tool-plug-in-for-painless-pure-actionscript-animation0Bone Tool plug-in for painless pure Actionscript animationJason R. Coombs2009-12-10T03:51:49Z2009-12-10T03:51:49Z
<p>Some issues with the Flash Bone Tool are described very well in <a href="http://www.youtube.com/watch?v=6k9eyJO-Vm4" rel="nofollow">this YouTube tutorial video</a> (as well as his claim that there is an Actionscript solution). If you don't want to watch the entire 10 minute video, then at least watch the important part from 1:39 to 3:05.</p>
<p>In essence, one of the main issues with the current Flash Bone Tool is that you cannot swap symbols in the middle of a bone animation. I can easily imagine that some Actionscript inserted on a layer above the bone animation layer could actually force a symbol swap to occur, thus resolving the issue. This code may in fact be fairly simple, but would require the user to enter certain information into certain sections of the code (the name of the symbol which would replace the existing symbol, and on which frame or frames of the animation the user wanted the swap to occur). Because most animators don't want to spend the time putting in the code, and then digging through it to enter the symbol names in the right places, I think our plug-in would make this all a lot easier. The user would simply click on a "Bone Tool Helper" icon in the toolbar, and a window would pop up with empty fields which the user would populate with the required info.</p>
<p>I imagine our Plug-In would look something like <a href="http://www.animonger.com/flashtools.html" rel="nofollow">the Plug-Ins offered here</a>.</p>
<p>Those tools solve other issues that Flash has (not the Bone Tool issues). They have free trial editions (with limited functionality), and there is a charge for the "pro" versions.</p>
<p>I'm unfamiliar with programming this type of plug-in. How difficult would it be to build a production-ready, user-friendly plug-in as described? I'm looking for an assessment of feasibility and estimated level of effort for an individual with experience and knowledge with plug-ins and bones.</p>
http://stackoverflow.com/questions/1876806/animate-a-path0Animate a path?Tim2009-12-09T20:52:41Z2009-12-09T21:10:57Z
<p>I have a set of coordinates. I would like to take, for instance, the first 5 and draw a line connecting 1 to 2 to 3 to 4 to 5. Then after a pre-determined duration, I'd like to remove the first point and add the 6th point. In doing that, I'd like the line to animate in such a way as the "beginning" of the line moves from point 1 to point2, while the end of the line moves from point 5 to point 6.</p>
<p>The effect here would look a lot like the old game Nibbles with the snake that moves around eating stuff.</p>
<p>What would be the most efficient way to approach this in WPF?</p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/1868759/randomly-animate-a-objects-with-flash-cs3-then-return-to-their-position-on-stage0Randomly animate a objects with flash cs3 then return to their position on stage after a set timetbwcf2009-12-08T18:02:57Z2009-12-08T18:29:07Z
<p>Hi all, I have a logo made of 28 circles which I need to animate using flash cs3...</p>
<p>so far I have made the logo randomly animate using this <a href="http://www.kirupa.com/developer/actionscript/random.htm" rel="nofollow">http://www.kirupa.com/developer/actionscript/random.htm</a></p>
<p>There are two things I need to achieve...</p>
<ol>
<li>the circles on the stage start from the position they lay on the stage</li>
<li>return back to those positions after say 45 seconds...</li>
</ol>
<p>If any one could help or point me in the right direction I would appreciate it.</p>
<p>Thanks in advance!</p>
<p>Andy</p>
http://stackoverflow.com/questions/1868408/flex-can-i-do-nice-button-animation-using-only-flex-or-do-i-need-adobe-flash-too0flex: can i do nice button animation using only flex or do i need adobe flash too ?ufk2009-12-08T17:09:05Z2009-12-08T17:19:20Z
<p>i would like to add nice animations and other graphics to my application. do i need to use flash to create partial swf files and to load them or is there another way?</p>
http://stackoverflow.com/questions/1860749/jquery-animation-background-image-swap1jQuery Animation + background image swapLuke2009-12-07T15:37:00Z2009-12-08T12:22:36Z
<p>Hi everyone, I am trying to punch above my weight with jQuery, and have run into a problem which has me stumped. </p>
<p>Basically, I am trying to get a truck to animate from the left hand side of the screen to the right, then when it gets to the right of the screen, the background image of the truck swaps to an image of the truck facing the other way, and it then animates back across the screen, and will repeat for ever.</p>
<p>I can get the truck to move across the screen, and swap the background image, but cannot get everything to happen in some sort of logical order - I.E. the truck background image is swapped on page-load and not when the left to right has completed.</p>
<p>Here is the code so far, and I realize that the syntax is probably wrong, but hopefully you will see what I am trying to do:</p>
<pre><code>$(document).ready(function() {
$(".animationWrap").animate({ left: "845px" }, { duration: 9000, queue: true }){
$(".animationWrap").css('background', 'transparent url(/Resources/Images/clearence/truckLeft.png) no-repeat 0 0');
}
});
</code></pre>
http://stackoverflow.com/questions/1863723/how-to-unanimate-wpf-dependencyproperty0How to unanimate WPF DependencyProperty?Guge2009-12-07T23:57:27Z2009-12-08T08:46:47Z
<p>After running WPF animations on dependency properties in code behind, the dependency properties can no longer be set using SetValue. They can only be changed through animations.</p>
<p>I want to change a dependency property, some times through short animations, sometimes immediately in code.</p>
<p>So how can I remove the animation from a dependency property after the animation has reached its end?</p>
http://stackoverflow.com/questions/1862785/how-do-you-study-about-software-animation1How do you study about software animation ?Rajat2009-12-07T20:47:21Z2009-12-07T20:55:19Z
<p>This is with reference to the same question as in <a href="http://stackoverflow.com/questions/1862512/which-programming-language-is-best-for-graphics-programming-closed">http://stackoverflow.com/questions/1862512/which-programming-language-is-best-for-graphics-programming-closed</a></p>
<p>Also out of curiosity:</p>
<p>How do they make the cartoon movies in Pixar. I am sure they use some kind of software animation tools. Mostly what are they (is it 'Maya' or something much more advanced).
Also do they do some programming or they use some kind of 3d modeling tools mostly. Are there courses that can be done independently to study those softwares.</p>
http://stackoverflow.com/questions/1859125/pygame-sprite-transformation-with-interpolation0Pygame sprite transformation with interpolationmizipzor2009-12-07T10:24:50Z2009-12-07T15:26:10Z
<p>Im currently working on a Python/Pygame module to wrap some basic sprite animation. Animation in the sense that the image itself is static but I apply <strong>rotation</strong> and <strong>scale</strong> with start and end values with a <strong>sine wave interpolation</strong>. That is, sprite transformation like the ones that could be made in Flash. I hope you understand, otherwise feel free to ask and I try to clarify.</p>
<p>I cant find a module that does this already. Does anyone know of one? Would save me some work. :)</p>
<p><strong>Edit:</strong> Oh, and if this <em>transformation with interpolation</em> thingie has a proper name I would love to hear it. Would probably make my search results better.</p>
http://stackoverflow.com/questions/1857160/how-can-i-create-a-custom-pin-drop-animation-using-mkannotationview1How can I create a custom "pin-drop" animation using MKAnnotationView?davetroy2009-12-07T00:38:19Z2009-12-07T00:38:19Z
<p>I have an instance of <code>MKMapView</code> and would like to use custom annotation icons instead of the standard pin icons supplied by MKPinAnnotationView. So, I've setup a subclass of MKAnnotationView called CustomMapAnnotation and am overriding <code>-(void)drawRect:</code> to draw a CGImage. This works.</p>
<p>The trouble comes when I try to replicate the <code>.animatesDrop</code> functionality supplied by MKPinAnnotationView; I would love for my icons to appear gradually, dropped from above and in left-to-right order, when the annotations are added to the <code>MKMapView</code> instance.</p>
<p>Here is -(void)drawRect: for CustomMapAnnotation, which works when you just draw the UIImage (which is what the 2nd line does):</p>
<pre><code>- (void)drawRect:(CGRect)rect {
[super drawRect:rect];
[((Incident *)self.annotation).smallIcon drawInRect:rect];
if (newAnnotation) {
[self animateDrop];
newAnnotation = NO;
}
}
</code></pre>
<p>The trouble comes when you add the <code>animateDrop</code> method:</p>
<pre><code>-(void)animateDrop {
CGContextRef myContext = UIGraphicsGetCurrentContext();
CGPoint finalPos = self.center;
CGPoint startPos = CGPointMake(self.center.x, self.center.y-480.0);
self.layer.position = startPos;
CABasicAnimation *theAnimation;
theAnimation=[CABasicAnimation animationWithKeyPath:@"position"];
theAnimation.fromValue=[NSValue valueWithCGPoint:startPos];
theAnimation.toValue=[NSValue valueWithCGPoint:finalPos];
theAnimation.removedOnCompletion = NO;
theAnimation.fillMode = kCAFillModeForwards;
theAnimation.delegate = self;
theAnimation.beginTime = 5.0 * (self.center.x/320.0);
theAnimation.duration = 1.0;
[self.layer addAnimation:theAnimation forKey:@""];
}
</code></pre>
<p>It just doesn't work, and there could be a lot of reasons why. I won't get into all of them now. The main thing I am wanting to know is if the approach is sound at all, or if I should try something entirely different.</p>
<p>I tried also to package up the whole thing into an animation transaction so that the beginTime parameter might actually work; this seemed to not do anything at all. I don't know if this is because I am missing some key point or whether it's because MapKit is trashing my animations somehow.</p>
<pre><code> // Does nothing
[CATransaction begin];
[map addAnnotations:list];
[CATransaction commit];
</code></pre>
<p>If anyone has any experience with animated MKMapAnnotations like this, I'd love some hints, otherwise if you can offer CAAnimation advice on the approach, that'd be great too.</p>
http://stackoverflow.com/questions/1853207/wpf-can-i-put-a-colour-animation-in-a-style0WPF: Can I put a colour animation in a style?Anthony2009-12-05T19:38:10Z2009-12-05T23:02:32Z
<p>This is a simple WPF window in XAML:</p>
<pre><code><Window x:Class="AnimateTest.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1" Height="300" Width="300"
x:Name="MainWindow"
Style="{StaticResource TestStyle}">
<Grid>
</Grid>
</Window>
</code></pre>
<p>Note that is has a style. What can we do with the style? This is the <code>App.xaml</code> that gives it a light blue background</p>
<pre><code><Application x:Class="AnimateTest.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
StartupUri="Window1.xaml">
<Application.Resources>
<Style x:Key="TestStyle">
<Setter Property="Window.Background" Value="AliceBlue" />
</Style>
</Application.Resources>
</Application>
</code></pre>
<p>To get more complex, this is the background that gives it a blue gradient background:</p>
<pre><code><Application x:Class="AnimateTest.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
StartupUri="Window1.xaml">
<Application.Resources>
<LinearGradientBrush x:Key="BackgroundBrush"
EndPoint="0.6,0.6" StartPoint="0,0">
<GradientStop Color="#FFFFFFFF" Offset="0" />
<GradientStop Color="#FFD0D0F0" Offset="1" />
</LinearGradientBrush>
<Style x:Key="TestStyle">
<Setter Property="Window.Background" Value="{StaticResource BackgroundBrush}" />
</Style>
</Application.Resources>
</Application>
</code></pre>
<p>The last step that I want to do is to animate this colour. I have </p>
<pre><code><Application x:Class="AnimateTest.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
StartupUri="Window1.xaml">
<Application.Resources>
<LinearGradientBrush x:Key="BackgroundBrush"
EndPoint="0.6,0.6" StartPoint="0,0">
<GradientStop Color="#FFFFFFFF" Offset="0" />
<GradientStop Color="#FFD0D0F0" Offset="1" />
</LinearGradientBrush>
<Style x:Key="TestStyle">
<Setter Property="Window.Background" Value="{StaticResource BackgroundBrush}" />
</Style>
<Storyboard x:Key="ThemeAnimation">
<ColorAnimationUsingKeyFrames
Storyboard.TargetName="(UIElement)"
Storyboard.TargetProperty="Background.GradientStops[1].Color"
Duration="0:0:10"
RepeatBehavior="Forever">
<ColorAnimationUsingKeyFrames.KeyFrames>
<LinearColorKeyFrame Value="#FFD0D0F0" KeyTime="0:0:0" />
<LinearColorKeyFrame Value="#FFF0D0F0" KeyTime="0:0:10" />
</ColorAnimationUsingKeyFrames.KeyFrames>
</ColorAnimationUsingKeyFrames>
</Storyboard>
</Application.Resources>
</Application>
</code></pre>
<p>So I can do this in the Window constructor:</p>
<pre><code> object themeAnimationObject = this.FindResource("ThemeAnimation");
Storyboard themeAnimation = themeAnimationObject as Storyboard;
themeAnimation.Begin(this);
</code></pre>
<p>But I get an exception:</p>
<pre><code>(UIElement)' name cannot be found in the name scope of 'AnimateTest.Window1'
</code></pre>
<p>I have tried various combinations of values for the animation's <code>Storyboard.TargetName</code> and <code>Storyboard.TargetProperty</code> properties, but they didn't work, I'm just groping in the dark. The best outcome would be able to apply the style, animations and all to any window without any, or with minimal c# code </p>
<p>Update: Here's the working App.xaml based on itowlson's answer:</p>
<pre><code><Application x:Class="AnimateTest.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
StartupUri="Window1.xaml">
<Application.Resources>
<LinearGradientBrush x:Key="BackgroundBrush"
EndPoint="0.6,0.6" StartPoint="0,0">
<GradientStop Color="#FFFFFFFF" Offset="0" />
<GradientStop Color="#FFD0D0F0" Offset="1" />
</LinearGradientBrush>
<Style x:Key="TestStyle" TargetType="FrameworkElement">
<Setter Property="Window.Background" Value="{StaticResource BackgroundBrush}" />
<Style.Triggers>
<EventTrigger RoutedEvent="Loaded">
<BeginStoryboard>
<Storyboard>
<ColorAnimationUsingKeyFrames
Storyboard.TargetProperty="Background.GradientStops[1].Color"
Duration="0:0:10"
RepeatBehavior="Forever"
AutoReverse="True">
<ColorAnimationUsingKeyFrames.KeyFrames>
<LinearColorKeyFrame Value="#FFD0D0F0" KeyTime="0:0:0" />
<LinearColorKeyFrame Value="#FFF0D0F0" KeyTime="0:0:10" />
</ColorAnimationUsingKeyFrames.KeyFrames>
</ColorAnimationUsingKeyFrames>
</Storyboard>
</BeginStoryboard>
</EventTrigger>
</Style.Triggers>
</Style>
</Application.Resources>
</Application>
</code></pre>
http://stackoverflow.com/questions/1849688/loading-circle-animation-in-iphone1Loading circle animation in iphonesasayins2009-12-04T21:17:03Z2009-12-05T02:13:12Z
<p>Hi,</p>
<p>How can I display the loading screen animation in iphone? I mean the bars arranged in circles. So that I can use it while some of the part of my app is loading, like initializing. Or should I create may own animation loading?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/681969/how-to-animate-the-flex-chart-axis-when-the-maximum-of-the-data-changes0How to animate the flex chart axis when the maximum of the data changes?2009-03-25T14:56:11Z2009-12-05T00:11:00Z
<p>I have a flex chart feed with multiple data sets, and I want to display only one of the data set in one view. So I created multiple buttons to select different data sets. Whenever the user clicks one of the buttons, I adjust the maximum of the vertical axis so that the chart can represent the data normally (i.e. not to display the fluctuation of data that has very small scale, say between 0 ~ 10, in a chart with the maximum of vertical axis being set to 1000).</p>
<p>I want to let the user to notice this change of the vertical maximum when they switch data set. Currently I'm trying to apply the standard effects of flex to the vertical axis renderer (e.g. glow, blur, etc.), but I don't think they are ideal for this scenario.</p>
<p>Could anyone teach me how to animate this transition naturally so that the user would notice the change of the range of data intuitively?</p>
<p>Thanks in advance.</p>
<p>Cheng</p>
http://stackoverflow.com/questions/1520178/jquery-using-append-with-effects2Jquery using append with effectsDavid King2009-10-05T13:47:27Z2009-12-04T18:38:14Z
<p>how can I use <code>.append</code> with effects like <code>show('slow')</code></p>
<p>having effects on <code>append</code> doesnt seems to work at all.
and it give results as normal <code>show()</code></p>
<p>no transitions, no animations. </p>
<p>How Can I append one div to another. and have a slideDown or Show('slow') effect on it?</p>
http://stackoverflow.com/questions/1847825/animated-crawling-text-on-iphone0animated "crawling text" on iPhoneunknown (google)2009-12-04T15:48:28Z2009-12-04T16:12:20Z
<p>Does anyone know how to <strong>create a "text crawl"</strong> like that shown at the bottom of the ESPN ScoreCenter app for the iphone?</p>
<p>Basically, there is a small bar of text at the <strong>bottom of the screen</strong> and the text is animated so that it moves slowly from right to left across the screen.</p>
<p><img src="http://imgur.com/pScM9.png" alt="alt text"></p>
<p>Can anyone point me to some source code that does something similar? Is it simply a UIWebView?</p>
<p>I've tried to google this, but to no avail.</p>
<p>Thanks to anyone who can point in the right direction!</p>
http://stackoverflow.com/questions/1361275/can-i-implement-a-callback-with-each-animation-step-in-jquery0Can I implement a callback with each animation step in jQuery?vdboor2009-09-01T08:39:59Z2009-12-04T10:40:20Z
<p>I'd like to implement an animation in my site which:</p>
<ul>
<li>needs to update multiple DOM elements.</li>
<li>each DOM element has it's own animation path (depends on their position)</li>
<li>and still have an easing effect.</li>
</ul>
<p>If I call jQuery's animate() function for each element (with queue: false), it will make each element move slightly out of sync with the rest. Makes sense, since there are multiple timers running.</p>
<p>Can I have just one timer event, with a callback for each animation step?
Something like:</p>
<pre><code>jQuery.fx.timeline( from, to, easing, function( step, total ) {
var percentage = step / total;
// ...update DOM elements based on the percentage of the animation
} );
</code></pre>
http://stackoverflow.com/questions/1844326/how-can-we-improve-the-performance-of-our-wpf-animations-100-of-them3How can we improve the performance of our WPF Animations (100 of them)?unknown (yahoo)2009-12-04T01:32:34Z2009-12-04T09:00:20Z
<p>We have an application that generates around 100 animations at runtime and they are all added to a single storyboard and then played. The problem is that the animation is extremely slow. The objects that are being animated are shapes and splines and a good amount of computation is done in the backend for generating the custom splines. The running computer is a quad core with a good graphics card.</p>
<p>Any suggestions on how we can fix this? Do we need to split the animations into multiple storyboards or animate on different canvases?</p>
<p>Thank you</p>
http://stackoverflow.com/questions/1575248/scala-2d-animation-library0Scala 2D Animation libraryElazar Leibovich2009-10-15T21:38:00Z2009-12-04T06:25:52Z
<p>Can anyone recommend a good 2D animation package for Scala? I prefer something which already have some basic events handling, more like <code>JavaFX</code> than like <code>processing.org</code>.</p>
http://stackoverflow.com/questions/1824252/jquery-navigation-menu-animation-with-wordpress-page-list0JQuery Navigation Menu Animation with Wordpress Page ListArchie19862009-12-01T05:57:14Z2009-12-03T23:02:41Z
<p>So I am using Jquery to display a pop up menu on my current site. The html is a wordpress wp_list_pages output for all you wordpress types out there. For all you non-wordpress types, this means that wordpress will output nested ul & li elements in accordance with page architecture on wordpress. Bottom line, I want the jquery code to be wordpress compatible, so if I change the pages, the code will handle this.</p>
<p>I want the code to be lite but the following is a bit janky. Any better ideas? Plus I want the pop up menu only to appear after the mouse has hovered over the ul element for 1000ms (1s), but not otherwise. Thoughts?</p>
<pre><code>jQuery(document).ready(function() {
jQuery.fn.pauseit = function(duration) {
jQuery(this).animate({ dummy: 1 }, duration);
return this;
};
});
jQuery(document).ready(function() {
jQuery("div#access li.page_item ul").css({display: "none"}); // Opera Fix
jQuery("div#access li.page_item").hover(
function(){
jQuery(this).find('ul:first').pauseit(1000).css({/*visibility: "visible",display: "none"*/}).fadeIn('fast');
},
function(){
jQuery(this).find('ul:first').css({/*visibility: "hidden",*/}).fadeOut('fast');
}
);
});
</code></pre>
http://stackoverflow.com/questions/1833208/wpf-cant-get-storyboard-to-affect-another-local-resource0WPF - Can't get storyboard to affect another local resourceAndy Clarke2009-12-02T14:24:27Z2009-12-03T21:42:30Z
<p>Hi,</p>
<p>I've set up a Transformation and a Storyboard as local resources, but when I trigger the storyboard from a button I get the following error:</p>
<p>{"'WorldTranslation' name cannot be found in the name scope of 'System.Windows.Controls.Button'."}</p>
<p>Can someone point me in the right direction please?</p>
<pre><code><Window.Resources>
<Transform3DGroup x:Key="WorldTranslation">
<RotateTransform3D>
<RotateTransform3D.Rotation>
<AxisAngleRotation3D x:Name="myAngleRotation" Axis="0,1,0" Angle="0" />
</RotateTransform3D.Rotation>
</RotateTransform3D>
</Transform3DGroup>
<Storyboard x:Key="MyStoryboard">
<DoubleAnimation
Storyboard.TargetName="WorldTranslation"
Storyboard.TargetProperty="(Transform3DGroup).(RotateTransform3D).(RotateTransform3D.Rotation).(AxisAngleRotation3D.Angle)"
From="0"
To="360"
Duration="0:0:1"
/>
</Storyboard>
</Window.Resources>
</code></pre>
<p>And heres the button xaml ...</p>
<pre><code><Button Height="20" Width="100">
<Button.Content>Blah</Button.Content>
<Button.Triggers>
<EventTrigger RoutedEvent="Button.Click">
<EventTrigger.Actions>
<BeginStoryboard Storyboard="{StaticResource MyStoryboard}" >
</BeginStoryboard>
</EventTrigger.Actions>
</EventTrigger>
</Button.Triggers>
</Button>
</code></pre>
http://stackoverflow.com/questions/1842222/android-linearlayout-addview-animation0Android: LinearLayout addView Animationpostalservice142009-12-03T19:14:25Z2009-12-03T19:14:25Z
<p>I currently have a working Android program that programatically adds views to a LinearLayout. I would like those views to be animated in and cannot find any good resources on figuring out how to do this.</p>
<p>Could someone point me in the right direction?</p>
<p>Thanks,</p>
<p>John</p>
http://stackoverflow.com/questions/1840193/sprites-and-c-animation1Sprites and C# animationTHDBASED2009-12-03T14:28:13Z2009-12-03T16:35:49Z
<p>I found a class to make a gif file containing multiple frame animations run in front of a background image. This is my class:</p>
<pre><code>using System;
using System.Drawing;
using System.Drawing.Imaging;
using System.Windows.Forms;
namespace AnimSprites {
public class AnimSprite {
private int frame, interval, width, height;
private string imgFile;
private Image img;
private Timer frameTimer;
public AnimSprite(string f_imgFile, int f_width) {
frame = 0;
width = f_width;
imgFile = f_imgFile;
img = new Bitmap(imgFile);
height = img.Height;
}
public void Start(int f_interval) {
interval = f_interval;
frameTimer = new Timer();
frameTimer.Interval = interval;
frameTimer.Tick += new EventHandler(advanceFrame);
frameTimer.Start();
}
public void Start() {
Start(100);
}
public void Stop() {
frameTimer.Stop();
frameTimer.Dispose();
}
public Bitmap Paint(Graphics e) {
Bitmap temp;
Graphics tempGraphics;
temp = new Bitmap(width, height, e);
tempGraphics = Graphics.FromImage(temp);
tempGraphics.DrawImageUnscaled(img, 0-(width*frame), 0);
tempGraphics.Dispose();
return(temp);
}
private void advanceFrame(Object sender, EventArgs e) {
frame++;
if ( frame >= img.Width/width )
frame = 0;
}
}
}
</code></pre>
<p>How can I use this class to make my gif file (running_dog.gif) run over background.jpg from left to right?</p>
<p>This is the dog.gif file: <a href="http://edh2004.co.cc/mm/cs/Sprite/dog.gif" rel="nofollow">dog.gif</a></p>
http://stackoverflow.com/questions/1836280/vertical-slide-insertion-for-a-uiview0Vertical Slide Insertion for a UIViewThierry2009-12-02T22:21:58Z2009-12-03T15:59:11Z
<p>hello,
i have a ScrollView with Buttons.
how to insert a view (which contains some informations) with a vertical slide down animation UNDER the selected button ? (and then disappear if clic "Done")</p>
<p>I really don't know how to proceed.
can you hellp me please ?</p>
<p>thanks a lot</p>
http://stackoverflow.com/questions/1840721/listview-long-click-animation0ListView Long Click Animationspaceboy20002009-12-03T15:38:29Z2009-12-03T15:38:29Z
<p>I would like to capture long click events in a ListView, which was easily done using a OnItemLongClickListener. However, that lacks the fading animation of the selector transitioning to a long press that is seen when the long click is handled by onCreateContextMenu. How can I get that animation using OnItemLongClickListener?</p>
http://stackoverflow.com/questions/1835240/caanimation-duration-not-being-applied0CAAnimation duration not being appliedAlex Reynolds2009-12-02T19:27:30Z2009-12-03T12:04:51Z
<p>I am applying a <code>CAAnimation</code> to move a toolbar on- and off-screen. </p>
<p>When I touch the superview, that fires the following method:</p>
<pre><code>- (void) touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {
[UIView beginAnimations:kViewerToggleToolbarAnimation context:nil];
if (self.viewerToolbarView.isVisible) {
self.viewerToolbarView.frame = CGRectMake(0, self.frame.size.height, self.viewerToolbarView.frame.size.width, self.viewerToolbarView.frame.size.height);
self.viewerToolbarView.isVisible = NO;
}
else {
self.viewerToolbarView.frame = CGRectMake(0, self.frame.size.height - kUIToolbarHeight, self.viewerToolbarView.frame.size.width, self.viewerToolbarView.frame.size.height);
self.viewerToolbarView.isVisible = YES;
}
[UIView commitAnimations];
}
</code></pre>
<p>This in turn fires the subview's delegate method:</p>
<pre><code>- (id<CAAction>) actionForLayer:(CALayer *)layer forKey:(NSString *)key {
id<CAAction> animation = nil;
if ([key isEqualToString:kViewerToggleToolbarAnimation]) {
animation = [CABasicAnimation animation];
if (self.isVisible)
((CABasicAnimation*)animation).duration = kViewerToolbarHideAnimationDuration;
else
((CABasicAnimation*)animation).duration = kViewerToolbarShowAnimationDuration;
((CABasicAnimation*)animation).timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionDefault];
}
else {
animation = [super actionForLayer:layer forKey:key];
}
return animation;
}
</code></pre>
<p>The constants <code>kViewerToggleToolbarAnimation</code>, <code>kViewerToolbarHideAnimationDuration</code> and <code>kViewerToolbarShowAnimationDuration</code> are defined elsewhere as:</p>
<pre><code>extern NSString * const kViewerToggleToolbarAnimation;
extern CGFloat const kViewerToolbarShowAnimationDuration;
extern CGFloat const kViewerToolbarHideAnimationDuration;
...
NSString * const kViewerToggleToolbarAnimation = @"kViewerToggleToolbarAnimation";
CGFloat const kViewerToolbarShowAnimationDuration = 2.50f;
CGFloat const kViewerToolbarHideAnimationDuration = 2.75f;
</code></pre>
<p>The problem is that I can increase these duration values in the constants file, but the delegate method ignores those durations and applies its own noticeably short duration (0.5 sec, roughly).</p>
<p>2.5 and 2.75 sec are pretty noticeably long times in which the animation would otherwise run, if it was working properly.</p>
<p>What am I doing wrong about firing the animation, which causes these duration constants to be ignored? It otherwise compiles and runs fine, so it doesn't complain about not being able to find the constants.</p>
http://stackoverflow.com/questions/1136895/how-to-implement-a-loading-animation-when-navigating-in-a-iphone-app2How to implement a loading animation when navigating in a iPhone app?Christer-André Larsen2009-07-16T11:13:04Z2009-12-03T07:38:18Z
<p>It seems like a pretty simple problem, but I have been unable to find any good answers.</p>
<p>What I'm trying to do is to make some sort of animation while some function is loading. I have already included an animated .gif file in the webapp when waiting for content, but I need the same functionality when navigating in native. For instance, when I press a button in the tab bar, the screen is just blank until the entire page is loaded.</p>
<p>It doesn't need to be anything fancy. I like the way this is solved in the facebook app with the infamous "spinning wheel" for instance.</p>
<p>Thanks in advance!</p>