XWidgetSoft Forum
https://www.bbs.xwidget.com/

animation
https://www.bbs.xwidget.com/viewtopic.php?f=8&t=3134
Page 1 of 1

Author:  Creator [ May 23rd, 2013, 10:12 pm ]
Post subject:  animation

NICE ANIMATION..HOW TO USE?
Code:
function bounce(progress) {
02
  for (var a = 0, b = 1, result; 1; a += b, b /= 2) {
03
    if (progress >= (7 - 4 * a) / 11) {
04
      return -Math.pow((11 - 6 * a - 11 * progress) / 4, 2) + Math.pow(b, 2);
05
    }
06
  }
07
}
08
 
09
function makeEaseOut(delta) {  // преобразовать delta
10
  return function(progress) {
11
    return 1 - delta(1 - progress);
12
  }
13
}
14
 
15
var bounceEaseOut = makeEaseOut(bounce);

http://learn.javascript.ru/js-animation#упругая-анимация

Author:  Tony [ May 24th, 2013, 9:01 pm ]
Post subject:  Re: animation

Hi, What is this ANIMATION? fade out?

Author:  Creator [ May 24th, 2013, 10:58 pm ]
Post subject:  Re: animation

Tony wrote:
Hi, What is this ANIMATION? fade out?

No drops and jumps. Look at the page for examples

Author:  Creator [ May 24th, 2013, 10:59 pm ]
Post subject:  Re: animation

http://is.gd/PUuBWr

Author:  Jimking [ May 25th, 2013, 3:54 am ]
Post subject:  Re: animation

Creator wrote:
http://is.gd/PUuBWr

Once again: Please use the English language! We can't help you if you posting things in Russian.

Page 1 of 1 All times are UTC - 8 hours
Powered by phpBB® Forum Software © phpBB Group
http://www.phpbb.com/