Animation is the rapid display of a sequence of visuals in order to create an illusion of movement or change.
1
vote
1answer
29 views
Why doesn't this javascript code to animate and focus on one picture work?
I have this problem with this code. I'm a novice javascript,jQuery programmer and trying to make a code to make one picture stay focused and the other ones animate to be smaller.
So here's the code:
...
2
votes
1answer
23 views
How to tell what stage a CSS3 animation is at using jQuery?
Eg, this is my code:
@-webkit-keyframes anim {
0% {
-webkit-transform: translate(-100px,0px) rotate(5deg);
}
50% {
-webkit-transform: translate(-140px,-5px) ...
2
votes
1answer
18 views
WPF using Animation to move a component
I only have experience with C/C++ and just moved to C# and WPF. I want to create an animation to move a component(e.g an image), but I don't know why the following is illegal:
ThicknessAnimation a = ...
0
votes
0answers
16 views
Android - animating a child View after scaling its parent ViewGroup
I have a parent View (a RelativeLayout), with a child View. I increase the scale of the parent View with FillAfter = true, and subsequently I animate the alpha of the child View. During the animation ...
0
votes
0answers
7 views
Tools for sprites animation
I got interested in game development couple of weeks ago and I'm really looking forward to work on a mobile game. My only concern is the game design part.
I'm interested in the tools that developers ...
0
votes
0answers
22 views
Animate variable
I'm wondering if it's possible to "animate" a variable value. I'd essentially like to have a value change from x to y over a certain amount of time and cause a call to drawRect: on each iteration. The ...
9
votes
1answer
70 views
WPF Animation that bends and follows some path geometry
Okay, so I'm working on a loading screen and I want to flare it up a bit.
Basically what I am trying to do is animate an object along path geometry data...I emphasize 'along' because keeping a fixed ...
-4
votes
1answer
41 views
Can this animation be done with javascript?
So, I need to make a simulation of processor scheduling and I thought JavaScript could do the trick until I found out that it doesn't support sleep (or similar method). It has setTimeout but it is ...
1
vote
1answer
32 views
JPanel won't move if it fills the screen
First of all, sorry for the vague title I don't know how to word the question in a sentence.
I have a simple programme that slides one JPanel into view as another gets pushed out, when a button is ...
0
votes
0answers
8 views
Animation beyond Fragment borders
I have a very simple Fragment. Its view is a RelativeLayout with a single ImageView.
I want to animate that ImageView using ObjectAnimator's TRANSLATE_X property. The problem is that the image does ...
2
votes
1answer
32 views
How to animate Button position (Margin) in Windows Store app?
I am creating a Windows 8 App, and I need to animate the positions of buttons. The buttons are created dynamically, so XAML is not an option. The buttons' positions are calculated according to the ...
0
votes
0answers
7 views
Galleria.io - first click in button = miss animation, after that it's ok
I have problem with gallery downloaded from http://galleria.io/ it works almost perfeclty, but when I click in button next minuatures I don't see animiation which should show next minuatures, it works ...
0
votes
5answers
27 views
jquery - toggle animation
I've got a sidebar that when you click a button the sidebar slides left 250px, when you click the same button I want it to slide back 250px - I am currently using jquery .toggle but as I'm fairly new ...
0
votes
1answer
22 views
How to animate a graph being drawn in Android
I need to animate the drawing of a line graph. I'll receive an array of values (probably between 0 and 10) and that has to go on a graph over time. I want the line graph to be drawn, and the drawing ...
0
votes
0answers
3 views
Android: anim not setting correct pivot for <rotate tag Android 2.3
While setting animation thru xml file for OverridePendingTransition in a Activity.
I get some weird animation for
<rotate
android:duration="700"
android:fromDegrees="0"
...