Advertisement
Serafim

Untitled

Oct 29th, 2013
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (new Boo.Core.Animate('linear')).run({
  2.   from: 50,
  3.   to: 100,
  4.   speed: 10
  5. }, function(v){
  6.   console.log('VALUE: ' + v);
  7. });
  8.  
  9. VALUE: 0
  10. VALUE: 10.00087059997635
  11. VALUE: 20.01975948521678
  12. VALUE: 30.000934008608887
  13. VALUE: 40.05925925925925
  14. VALUE: 50
  15. VALUE: 59.940740740740765
  16. VALUE: 69.99906599139112
  17. VALUE: 79.98024051478323
  18. VALUE: 89.99912940002366
  19. VALUE: 100
  20.  
  21.  
  22. (new Boo.Core.Animate('ease')).run({
  23.   from: 50,
  24.   to: 100,
  25.   speed: 10
  26. }, function(v){
  27.   console.log('VALUE: ' + v);
  28. });
  29.  
  30. VALUE: 0
  31. VALUE: 9.326250000000003
  32. VALUE: 29.438203819798808
  33. VALUE: 51.38514242233258
  34. VALUE: 68.25470691788243
  35. VALUE: 80.24139389617437
  36. VALUE: 88.52331212144139
  37. VALUE: 94.0765057541943
  38. VALUE: 97.5702600532104
  39. VALUE: 99.43188900388695
  40. VALUE: 100
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement