Greeting to GSAP Team!
Great thanks for making this amazing tool!
Now about my problem, please, if you can, help me with it.
I'm trying to tween backgroundPosition, but it's isn't work with some properties.
For example:
// This is NOT work
TweenMax.fromTo($(this).children('a'), 0.8,
{backgroundPosition: 'center left'},
{backgroundPosition: 'center right'}
);
And this:
// Now it Work
TweenMax.fromTo($(this).children('a'), 0.8,
{backgroundPosition: 'center left'},
{backgroundPosition: 'top center'}
);
The starting background position of element (css style) is "center left".