JSTween is a JavaScript animation library for jQuery.

learn more… | top users | synonyms

4
votes
2answers
100 views

how to understand the syntax of kineticjs?

This is the first time around that I am using some js,otherwise I always rely on hardcoding.Probably this is the reason why I am facing some issues in understanding the syntax of kineticjs. I saw some ...
0
votes
0answers
43 views

as3, flash: problems with motion tween and moveover/mouseout and mutiple objects

I am working on an animation that when you hover over it other things will side out. However when i put my mouse over the other object it stops working. and goes back to frame one. demo can be found ...
0
votes
1answer
67 views

Tween transition in Kinetic js

I've been using the old 'transitionTo()' in my program but since Kineticjs is using Tween, i am a bit lost. I've tried a simple shape transition using Tween and i've got some issues: If you drag ...
0
votes
0answers
30 views

Tweening polygon Kinetic JS

Can I change the size of polygon wchich I defined by points? var pierwszy = new Kinetic.Polygon({ points: [0, 0, 150, 0, 80, 150, 0, 150], fillPatternImage: images.img1, stroke: 'black', strokeWidth: ...
0
votes
0answers
25 views

TweenJS - How to use a slider input to control tween position?

I am working on a project that allows a user to view a canvas animation created in a previous process, Underneath the animation (the canvas element) I need a slider to control "scrubbing" of the ...
3
votes
2answers
43 views

Tween Animation and Frame by Frame Animation in Android

What is Tween Animation and Frame by Frame Animation in Android?
0
votes
1answer
30 views

Tweening across a fixed L shaped path with MotionGuide plugin

I am diving into Tween.js for some elementary animation. It seems like for making a ball move across a fixed path you need the MotionGuide plugin. Here is a document at : ...
0
votes
1answer
69 views

AS3 Pageflip effect: Page reversed when flipped

I have a script for a book with a page flip effect. But when i flip the page from right to left, the back of the page insted of white is the reflex from the front of the page. Do you know you to make ...
0
votes
0answers
33 views

No Accessor registered. Universal Tween Engine

I created the following accessor in order to add a simple tween to an imageview's position. I'm using a RelativeLayout. public class ImageViewAccessor implements TweenAccessor<ImageView> { ...
1
vote
1answer
86 views

Tween.registerAccessor NoClassDefFoundError

i 'm a newbie for LibGDX and Android. Btw sorry for my bad English. Here is my problem. I just want to make a splash screen with libgdx and i watched Dustin Riley 's libGDX tutorial on youtube. But ...
0
votes
1answer
136 views

Cool Animations on Android 2.3

How would I go about doing some reasonably cool animations on Android 2.3? I realize I'm asking what may sound like a silly question but I'm not able to use enough Bing-Fu (or enough Google-Fu) to ...
0
votes
0answers
32 views

Superscrollarama/greensock tween not being fully destroyed

I've built an editor for a complex scrolling sequence that will be implemented using superscrollarama. The editor lets me set keyframes for the properties (position, opacity, etc.) of various images ...
0
votes
0answers
41 views

How to clone a Timeline/Tween with the universal tween engine in java

I'm actually making a 2d game with LibGdx, and I'm using the Universal Tween Engine to animate some objects. I'm using nightly builds of all libraries, and java 7. For some reason, I need for each ...
2
votes
3answers
51 views

Reference in callback function

I'm trying to pass an object through a callback function onUpdateTween( groups[i], this ); but it doesn't give me the correct object. It only gives me the last object from the groups array. How can I ...
0
votes
1answer
184 views

Resizing HTMLLoader size lags behind position

I am trying to resize and reposition a HTMLLoader by the same amount, but the size of the HTMLLoader always lags behind the position by at least a frame. The position and size are both changing by ...
1
vote
2answers
42 views

Transitions in Flash Actionscript 3.0

I'm new to flash and unfortunately our teacher hasn't taught us how to make transitions. I have tried researching them, and it seems there are 100's of ways to do it. In my instance, I haven't found a ...
0
votes
0answers
69 views

AS3, MovieClip's filter code stops Stage Tween

I have Motion Tween at the Stage, which uses object_mc. Inside this object_mc there is a code which set up bevel filter for it. When I test the movie, my Tween doesn't work and object_mc stands ...
1
vote
2answers
157 views

Tweening Image and then Text Greensock and JS animation

I am trying to tween an image and then have text come flying in afterwards. I have the image flying in already, but I can't seem to figure out how to make the text come in after the image is ...
0
votes
2answers
176 views

how to use the same tween on multiple words using superscrollorama?

Me being a total newbie again here- I am trying to use http://johnpolacek.github.com/superscrollorama/ and as you can imagine the idea of java script to me is very overwhelming especially this ...
0
votes
0answers
109 views

onUpdate function in GreenSock, AS3, causing problems

Imagine a water ripple effect using the circumference border of multiple circles. I'm using the onUpdate function which actually halts the rest of the program (i.e. the 2nd tween). Trying to tween ...
0
votes
2answers
175 views

Tweening Sprite size using GreenSock in AS3

I've seen examples where it's possible to tween a rectangle using scaleX, but I can't find anything that tweens a circle. (The "circle" that I'm drawing is actually a donut shape and I want the ...
0
votes
0answers
43 views

Tweening to a moving object

I'm trying to tween a camera to a moving planet. As it is right now, it works except by the time the tween completes, the planet is at another position. I use this code to move the planet around the ...
1
vote
1answer
70 views

Following a custom path in TweenJs

i'm trying to design a simple animation with TweenJs.. Lets consider two people playing throwing ball. I've managed to move the ball in a linear path. But it has to seem realistic. Ball should follow ...
0
votes
1answer
187 views

Example on how to control tweens using Ticker in CreateJS

I'm working with CreateJS and wondered if anyone here has examples of controlling tweens using the Ticker object. I'm trying to get a sprite to follow a path defined by waypoints but i don't want to ...
0
votes
3answers
141 views

How to create a wiggle effect using GreenSock

I can't see any built-in methods in TweenMax that lets you "wiggle" an object from side to side. It needs to be a really quick animation from its start position such as: x -> x-5 -> x+5 -> x-5 -> x+5 ...
0
votes
2answers
170 views

Tweening blur on text using Greensock in AS3

I'm trying to yoyo a bit of text from being blurred to non-blurred back to blurred. For this I've tried to set the blurX and blurY before the tween, but this stops the tween from happening altogether. ...
2
votes
0answers
261 views

Java Swing GridBagLayout panel resize issues

I am working on a simple little swing application for a relative, but I'm having trouble implementing animations on it... Here is a description of my layout: I have a main window (created by ...
1
vote
1answer
76 views

Flash hover caurina saturation

I have a flash project that loads an image and applies a grey saturation over it. There is a button beneath the image that when highlighted or the mouse hovers over it removes the saturation and ...
0
votes
1answer
114 views

Stop an animation in a child-movieclip from a parent once parent animation complete

I have a movieclip symbol of a sheep(symbol name: "sheep"). This animates across the screen. Inside the sheep movieclip there are tweens of its legs moving up and down. When the sheep stops moving I ...
0
votes
1answer
22 views

How to link multiple continueTo( ) tweens

I have a movieclip that I want to move in increments (each incremental move should have the easing applied). To get the clip to animate after the first movement I use: var sheepMoveX:Tween = new ...
0
votes
0answers
115 views

Updating Multiple Values in a D3 Tween

I've setup a jsfiddle (http://jsfiddle.net/rolandino/jpjCx/). Right now, if you click on any circle, using transition.attr("cx") and transition.attr("cy") the circles move to a particular point. ...
0
votes
2answers
226 views

Tweening alpha with GreenSock

Trying to tween the alpha of a graphics object in AS3 using GreenSock, but the functions are not working. Trying to tween to from alpha 0 to 0.7 in 2 seconds. The fromTo(); method doesn't work either. ...
0
votes
2answers
161 views

Separating movement tween and alpha tween using GreenSock

I'm using GreenSock's TweenMax in AS3, Flash AIR 3.2 for iOS. I'm trying to get a string of text to start fading using the autoAlpha plugin at a certain point (such as after it reaches the middle of ...
5
votes
2answers
426 views

android - Slide ListView with setX, setPadding, or tween animation?

Without going into too much detail, I want to be able to 'slide' elements in a ListView similar to the 'slide to archive' feature in GMail. I'm fine with the onTouchListener and all that, my question ...
0
votes
1answer
166 views

How to loop a tween/autoscroll TextField across screen

I'm working in Flash AS3, AIR 3.2 for iOS SDK. I'm trying to make a TextField appear and tween from the right side of the screen automatically to the left side, disappear, then reappear from the right ...
0
votes
0answers
105 views

Android Tween Animation on imageView

I need to make animation in an imageView. When the page will be loaded, the image should appear in an animated way. The features of the animation are given below: The image will appear in imageView ...
0
votes
1answer
62 views

shapetween tweening multiple elements in an array

I am working on a project in which I am trying to visualize a log of soccer teams moving up and down in the ranks as a year goes by. I saved the images representing the teams into an array and called ...
0
votes
1answer
241 views

tweening svg attributes with greensock tweenlite (js version)

I want to use greensock's js animation platform to tween the radius of an svg circle, but it doesn't seem to be working, and I didn't see anything in the documentation about tweening attributes, only ...
0
votes
0answers
112 views

tweenlite.fromTo not working as expected?

I am implementing a simple smooth scrolling to next section type of thing. Here is the code: $('a.next-section').click(function(){ scrollTop = $(window).scrollTop(); $('h1').each(function(i, h1){ ...
0
votes
1answer
73 views

Tween yoyo is permanent

Original goal was to play animation in reverse on event1, and normally on event2. So I used this code: /* some imports */ public class Element extends MovieClip { private var tween:Tween; ...
1
vote
1answer
228 views

Tween frames INSIDE a Starling MovieClip

I noticed the Starling MovieClip does not expose a 'gotoAndPlay' method. So how would you tween the frames of a Starling MovieClip? Is it even possible? I want to avoid having to use a traditional ...
0
votes
1answer
62 views

tweenjs always starts at 0?

I'm using this code to rotate a plane with threejs,But the tween always starts at 0, It appears to be ignoring the initial value (a) althought when I print it in the console it is ok. For example I ...
1
vote
3answers
97 views

AS 3 simple ease

How can I move an object and be able to physically see it when it is moving? Not just disappear and appear on a different location like it would be using the following code. ...
0
votes
1answer
171 views

d3js how to scroll or tween properties

I have a div, #scrollable, with a scrollbar and I want to scroll to the end. I can do it by setting the div's "scrollTop" property to the value of the div's "scrollHeight" property thus: var ...
0
votes
1answer
298 views

Animating Color with Tweenjs

I've recently switched to EaselJs and would like to animate the color of a circle. The code I've got so far is this: var shape = new createjs.Shape(); ...
0
votes
1answer
111 views

AnimationSet containing ScaleAnimation and TranslateAnimation does not tween at OS 2.1

I am using an AnimationSet containing ScaleAnimation and TranslateAnimation. Tweening one image from one size and position to another over a few seconds. It works on a recent device, but the tweening ...
0
votes
0answers
40 views

How do you retrieve child x co-ordinates from svg with jquery-svg plug in?

I like the svg jquery plugin which means I can load in an external svg file 'FingerDayCS4b.svg' and animate an element '#hour13' inside the svg file by clicking a button in the html DOM. If I want to ...
-1
votes
1answer
242 views

Trying to code random bezier curve motion of multiple movieclip instances in AS3

Completely new to AS3, still learning to ropes, so please bear with me! I am trying to make a game using ActionScript 3.0 that will display 5 grasshoppers jumping around on the stage in random ...
0
votes
2answers
284 views

Set rotation flash tween to shortest distance as3?

I am working on an adobe air interactive table project and I'm trying to tween some rotations. For the most part it works fine, but occasionally it spins aaall the way around version just spinning a ...
0
votes
1answer
599 views

greensock TweenMax javascript - kill looping tween

I created a looping tween using Greensock javascript and I got it to loop using a function, maybe this is not the best way to loop, if you know a better way please advice, but basically when I try to ...

1 2 3 4 5