animation

rotationY causes blur, AS3

Hi I'm having some little bugs on my site I'm developping for a school project. I'm using a flip mechanism to navigate through my site. The problem is: once it's flipped the content been displayed good just like I want it, but there's some offset from the flipped (right) parts en the solid left part (visible when you look closely). Also...

How to setup Quaternion to move point to particular location?

Hello i've been working on this seemingly simple issue for more than 2 days. I would love it if you would help me out. I have some code to produce a list of vectors (19) (thisPose ArrayList) corresponding to a pose for a skeleton: private ArrayList updatePose ( int poseIndex , ArrayList listOfUpdates ) { int i; ...

How to import Blender 3D animation to iphone openGL?

I am trying to do animations in iphone using opengl. I am able to do the animation in Blender 3D software. I can export as a .obj file from blender to opengl and it works in iphone. But not able to export my animation work form Blender 3d to opengl..Can anyone please help me to solve this.? Thanks in advance.. ...

How to create a smoke effect in iphone?

Hi, i am developing an application where i want to do some smoke effect like animation and interact with that smoke. Do i need to implement it OpenGLES or any simple solution? Is there any sample application for it? ...

Animate opacity on hover (jQuery)

We have a link: <a href="#"> Some text <span style="width: 50px; height: 50px; background: url(image.png); overflow: hidden; opacity: 0;"></span> </a> And we want to change opacity of <span> with some animation, when the link is hovered. How would we do it? ...

Iphone Animation - Calculation to plot Cartesian Coordinates

I have two points (x1, y1) A & (x2, y2) B. I want to animate an image from point A to point B but also have a touch event on that image. What is the best way to accomplish this? I am currently using CGPointMake to manually plot points but I want to be able to just plug in the two coordinates and have a timer loop to move the object. I...

How can I chain position animations usign jQuery without introducing a delay between individual animations?

I'm using jQuery to create animations of an image object. I would like the object to follow a square pattern based off points I have. What I'm currently doing is having four animations, just going point to point and they have the same duration. I want this to appear to be continuous, but there is a delay going from animation to animat...

WPF DoDragDrop causes control animation to halt

Here's the scenario (simplified): I have a control (let's say, a Rectangle) on the Window. I hooked the MouseMove event to make it initiate a drag&drop. Then in the MouseDown event I let it animate, moving 50 pixels to the right. However, when I hold my mouse down on the Rectangle, the control moves about one pixel, and then pauses. Only...

WPF 3D Camera Animations

Hey guys, I have a double property called cameraAngle which is tied to a rotationtransformation, which is applied to the camera. I have series of 3d tiles with pictures on them (think cooliris), when i click the left key down i want my camera angle to go from 0 - 45 degrees. I know I want to use something like a doubleAnimation, but my...

Trying to fade in a UIView without success

Hi there. I am trying to fade in a UIView as a subview of my main view. The UIView I am trying to fade in has the dimensions of 320x55. I setup the view and a timer; secondView.frame = CGRectMake(0, 361, 320, 55); secondView.alpha = 0.0; [self.view addSubview:secondView]; [NSTimer scheduledTimerWithTimeInterval:.5 target:self selector...

Applying animated ScaleTransform in code problem

Hi I am trying to find out why the code below does not seem to work. It does not give an error - it simply doesn't scale. It actually does seem to work if I change it as to my second code sample. Anyone got any idea? Thanks public static void StartMouseEnterAnimation(Button button) { Storyboard storyboard = new Storyboard(...

jQuery animation on multiple elements, single animation thread/timer or multiple?

Hi, I'm wondering when the jQuery selector returns multiple elements and I do a "slideDown" for example on all those element... $('.allthisclasss').slideDown(); Is there a single loop of code that moves all objects down in synch or if jQuery treats all objects separately and they each have a thread of execution to move themselves? My...

(Actionscript) Wave-like animation on objects

I have different cards, I need to reveal them in a wave like form, i.e. the cards open and close at different timings sequentially and systematically such that they form a wave. I have the cards in an array alr. How do I implement this animation in the most efficient way? Thx! ...

How do I create an animation of scrolling text with just HTML and CSS (or java i guess) like apple used to have on their livepage?

I have a banner at the top of my website that is blue with a light radial gradient on the left side. I want to have white text animated that scrolls up on the right side of the banner. I want it to fade in as it appears and then fade back out. I would like to do this without the use of Flash, and as little Java as possible. I can wo...

Is there a way to get a position (or center) state from a unfinished UIView animation?

I have a UIView doing a simple animation. It adjusts its y position from 100 to 130 and then reverses. I want it to keep repeating so I have the repeat counter set to 999. Upon user input, I want to take the same UIView and adjust the x position. This is done by means of another UIView animation. The problem is that when the 2nd ani...

uiview animation threading issue

i am using two UIView animations to move the two different balls to particular position. But the timing of collision varies. First time they collide but second time first ball come first or viceversa. Can any buddy explain how to make them collide at same point using uiview animation. is it the thread processing issue of uiview animation...

animation starts when tilting

i like to start this animation when tilting. it doesn't, so i suppose some essential code is missing. please help: - (void)accelerometer:(UIAccelerometer *)accelerometer didAccelerate:(UIAcceleration *)acceleration { flap.animationImages = [NSArray arrayWithObjects: [UIImage imageNamed: @"ronnie1.png"], [UIImage imageName...

Slow jQuery animation in IE

Hi, I have a site http://www.special4you.co.uk and has a animation nav made from balloons. This works and looks lovely in FF and Chrome but in all the IEs it looks pants as the animation is poor and jagged. Does anyone know why this or if it is my fault? my code is: $(document).ready(function(){ Cufon.replace('h1, p, #address, h2')...

unable to chain animation in jquery

I have a list which is hidden using css code {display:none;} now i am using the jquery code to animate the list (li's) var numb = $("ol#update li").length; for(j=0; j < numb; j++) { $("ol#update li").eq(j).animate({ height: 'show', opacity: 'show' }, {duration:1000}); } I need to animate the items one aft...

How to set parameters to a storyboard in wpf ?

Let's say that I have this storyboard: <Storyboard x:Key="OnMouseEnterStoryboard"> <DoubleAnimation BeginTime="00:00:00" Storyboard.TargetProperty="(UIElement.RenderTransform).(RotateTransform.Angle)" To="180" /> </Storyboard> It's there a possibility that I can set the To property from code. Something ...