Questions tagged [tween]

Animation technique of frame interpolation between keyframes.

A tween could be understood as a synonym of animation. Given two keyframes with a number of properties a tween gives intermediate values per keyframe between the two keyframes. Usually this task is achieved by using specific libraries.

http://en.wikipedia.org/wiki/Inbetweening

624 questions
2
votes
2 answers

How to loop timelinemax animation in this case

I have this code: import com.greensock.*; import com.greensock.easing.*; import com.greensock.events.*; var timeline:TimelineMax = new TimelineMax({yoyo:true,repeat:1}); var timeline2:TimelineMax = new…
user642523
  • 151
  • 4
  • 16
2
votes
3 answers

TweenJS with Images

i have got a problem to animate a image from x=0 to x=400. i´m using easeljs and tweenjs. here is my code: Javascript:
Khazl
  • 125
  • 2
  • 9
2
votes
1 answer

Universal Tween Engine for android

Can i use Universal Tween Engine for android tween animations?. Tween.to(getResources().getDrawable(R.drawable.ic_launcher), ParticleAccessor.POSITION_XY, 0.5f) .target(0, 0) .ease(Bounce.OUT) .delay(1.0f) .repeatYoyo(2, 0.5f) …
i leaf
  • 273
  • 7
  • 19
1
vote
0 answers

AS3 TweenLite Issue

I'm using tweenlite to move several objects around in my flash, however I have a weird issue that seems to only affect Firefox. Chrome/IE play the swf no problem. In my fla, I have a function that executes around 10 different tweens, some of them…
Joe
  • 1,762
  • 9
  • 43
  • 60
1
vote
2 answers

What parameter type does bezierThrough in TweenMax library expect?

I'm currently trying to adapt some sample code and have hit a snag when trying to replace hardcoded coordinates with a variable. The following sample code works: TweenMax.to(sp, 5, …
kasey
  • 553
  • 7
  • 21
1
vote
1 answer

how to get similar tweenmax affect you see in flash using interpolation in android java?

I have an object that continuously follows the users touch coordinates. I would like to make it so the object has an easing effect. by which i mean, the object has a start point and when the user touches the screen, said object would move to the…
joacampb
  • 177
  • 1
  • 18
1
vote
2 answers

Flex tween classes

I've been told several times or I've read in various places (can't remember where exactly right now) not to use Tween classes from the Flex SDK but to use instead other animation libraries like Tweener, TweenMax, GTween, ... What's wrong with using…
Florian F
  • 8,822
  • 4
  • 37
  • 50
1
vote
2 answers

Infinite horizontal scroll at constant speed in AS3 using TweenLite

I need to do an endless horizontal scroll of elements within a parent MovieClip. No matter what ever method I try, an element of 'drift' occurs and eventually the elements start to overlap. I've tried using relative recursive tweening for each…
Bachalo
  • 6,965
  • 27
  • 95
  • 189
1
vote
3 answers

iOS Core Animation Value Interpolation

As I know, putting it simply, Core Animation actually works by interpolating property value over time. Given this, is there any way to interpolate the property to a specific time? For example I have animation animation = [CABasicAnimation…
vangoz
  • 546
  • 6
  • 15
1
vote
1 answer

animated javascript scrollLeft using XUI

i want to animate my scrollLeft = value using XUI (note that I can't use any JQuery animation for this one). I tried using the tween function as such: x$('#divID')tween(scrollLeft : value + 'px') and it didn't solve the problem. Do any of you have…
AJ Naidas
  • 1,424
  • 7
  • 25
  • 47
1
vote
2 answers

flash as3 - using tweenmax and flash's graphics class together

I'm trying to find a good way to use TweenMax and flash's drawing class together, but it always bogs down and crashes the flash player, and I can't really figure out what's going wrong. Really all I want to do is make sure that when two (or more)…
mheavers
  • 29,530
  • 58
  • 194
  • 315
1
vote
1 answer

GODOT. Tween transition parallel to 2 other chained transitions

im trying to tween something like this: Two consecutive animations parallel to another animation I tried to achieve this result in that way, but the last animation does not play, the object immediately returns to its original size, as it should, but…
1
vote
2 answers

How to loop tweens without repeating similar code segments?

I'm oscillating my character between 2 positions as such: Idle -> Run & move right -> Idle -> Run & move left -> (Repeat) extends Sprite func _ready(): var tween = get_tree().create_tween().set_loops() ## Idle 1 ## …
cak3_lover
  • 1,440
  • 5
  • 26
1
vote
1 answer

how to give a curve effect to a specific range from animation value - flutter

I need to divide the range of animation value to a smaller ranges like this simple example: class TextAnimation extends StatefulWidget { const TextAnimation({Key? key}) : super(key: key); @override State createState() =>…
Jaafar Melhem
  • 157
  • 1
  • 7
1
vote
1 answer

CreateJS chained animations not reaching target position

I am working on a project using Three.js and CreateJS. I have a problem with the animations, moving the same object multiple times. The first animation never reaches the target position, and so the next animations never start. This is the js the…
parwal
  • 21
  • 4