Animation is the rapid display of a sequence of visuals in order to create an illusion of movement or change.
0
votes
0answers
6 views
Android animate view. AnimationOnReapete never gets called
Im having troubles with my animation of a ImageView in my app. Im using API 17. The first problem is that my animation listeners onAnimationRepeat method never gets called. I quick look here gave me a ...
0
votes
0answers
11 views
YUI 3.10 Simple scroll animation
We moved our project to latest YUI version and some problem which should be trivial became night mare.
Goal: Click on 'back to top' element need to move our users to top element
Animated Scroll ...
0
votes
1answer
7 views
Fade UITextField text
I want to be able to make the text fade in a uitextfield when I change it. I've tried
[UIView animateWithDuration:0.25 animations:{
textview.text = @"";
}];
but that didn't work. It would be ...
9
votes
2answers
60 views
Animation slows down when left margin becomes negative
I am trying to have a polygon move from completely off the left of the screen, across the screen, and then completely off the right of the screen, then back again.
I've gotten this working. BUT, for ...
0
votes
2answers
15 views
Undersanding animation function in android
I want to use the following code snippet, please help me in understanding the given functions or suggest me online documentation that can I use.
view.animate().setDuration(2000).alpha(0)
...
-1
votes
0answers
10 views
When animating a raw in list view , the margin applies to many raws in the list view
public class ItemAdapter extends BaseAdapter {
ItemInfo records[];
Context context;
private Activity activity;
FrameLayout aniFrame;
LayoutInflater mInflater;
public ...
0
votes
1answer
18 views
Fluent animated image working as a background?
I have a very specific client. He requied creation of a loading image. But no simple spinnig wheels or whatnot. It's his product spinning. The problem is - when I created a gif with ten frames, it's ...
0
votes
0answers
11 views
Computing local bone space matrix for each bone
I have been trying to use Pinocchio's automatic rigging program output in my own programs. The output consists of:
A list of joint positions
A file with the weights corresponding to each bone
...
0
votes
1answer
29 views
Javascript animation move diagonally and reverse
I'm having trouble trying to make an animation with JavaScript and the HTML5 canvas element.
I need to have an animation that starts in the bottom right corner of my canvas, which moves up diagonally ...
2
votes
0answers
20 views
Growout/shrink/fadeout animation in android
I got a problem with animation....
My problem is....
1.If you see the image i have given below you can understand that i have a button and a image view in screen.
2.In the first screen I have a button ...
1
vote
1answer
19 views
storyBoard animation rotation issue
i am rotating a button on click at 180 degree, and its working fine
AnimationServices.RotationAnimation((FrameworkElement)sender, 180, 1, "Y"); // working
but when i do the same thing by rotating ...
0
votes
0answers
20 views
Repeatable animation across the drawing path
I have a Path element with complex data in the Data attribute, so I need to make animation across this path. I know that it is easy to use MatrixTransform for such purposes. But what if we need ...
0
votes
0answers
8 views
SetFillAfter causes me to lose listener
So I have a some images,
when i select an image, all the other images will be resized so the selected image is highlighted.
when i deselect the image, the resized images should resized to normal size ...
0
votes
0answers
22 views
Stamp like animation in Android
Thanx for helping me in solving my issues until now.....
But I got a problem which I'm even unable to search...So I am placing my issue in stackoverflow. Hope i will get the solution for this.....
As ...
0
votes
0answers
11 views
Quick Rotation or Randomizer Animation
What I want to accomplish is: on the home screen there will be a UILabel that animates through a series of different text before it stops on one.
How would I go about accomplishing this animation?
...