Version 3.17.2
Show:

File: anim/js/anim-color.js

  1. /**
  2. * Adds support for color properties in <code>to</code>
  3. * and <code>from</code> attributes.
  4. * @module anim
  5. * @submodule anim-color
  6. */
  7.  
  8. var NUM = Number;
  9.  
  10. Y.Anim.getUpdatedColorValue = function(fromColor, toColor, elapsed, duration, fn)
  11. {
  12. fromColor = Y.Color.re_RGB.exec(Y.Color.toRGB(fromColor));
  13. toColor = Y.Color.re_RGB.exec(Y.Color.toRGB(toColor));
  14.  
  15. if (!fromColor || fromColor.length < 3 || !toColor || toColor.length < 3) {
  16. Y.error('invalid from or to passed to color behavior');
  17. }
  18.  
  19. return 'rgb(' + [
  20. Math.floor(fn(elapsed, NUM(fromColor[1]), NUM(toColor[1]) - NUM(fromColor[1]), duration)),
  21. Math.floor(fn(elapsed, NUM(fromColor[2]), NUM(toColor[2]) - NUM(fromColor[2]), duration)),
  22. Math.floor(fn(elapsed, NUM(fromColor[3]), NUM(toColor[3]) - NUM(fromColor[3]), duration))
  23. ].join(', ') + ')';
  24. };
  25.  
  26. Y.Anim.behaviors.color = {
  27. set: function(anim, att, from, to, elapsed, duration, fn) {
  28. anim._node.setStyle(att, Y.Anim.getUpdatedColorValue(from, to, elapsed, duration, fn));
  29. },
  30.  
  31. // TODO: default bgcolor const
  32. get: function(anim, att) {
  33. var val = anim._node.getComputedStyle(att);
  34. val = (val === 'transparent') ? 'rgb(255, 255, 255)' : val;
  35. return val;
  36. }
  37. };
  38.  
  39. Y.each(['backgroundColor',
  40. 'borderColor',
  41. 'borderTopColor',
  42. 'borderRightColor',
  43. 'borderBottomColor',
  44. 'borderLeftColor'],
  45. function(v) {
  46. Y.Anim.behaviors[v] = Y.Anim.behaviors.color;
  47. }
  48. );
  49.