Jump to content
Search Community

ankush

Members
  • Posts

    3
  • Joined

  • Last visited

Posts posted by ankush

  1.  

    Just want to say that I've posted the same question on StackOverflow, but figured I would post it here too :) 

     

    I'm really into Google's Polymer and I love GSAP - and so far I've been using the two in conjunction without a hitch. Unfortunately I have now hit a problem - how do I use GSAP (TweenMax to be specific) with custom css variables? 

     

    For example: 
    To change 

    someCssProperty

     of 

    someElement

     I would 

    TweenMax.to(someElement, 1, someCssProperty: "value"); 
    

    but the 

    someCssProperty

    part becomes an issue when I'm trying to animate a css variable, which take on the form 

    --some-custom-css-variable

     I have tried to use 

    TweenMax.to(someElement, 1, --some-custom-css-Property: "value"); 
    

    (obviously gives me errors) and I also tried to use

    TweenMax.to(someElement, 1, "--some-custom-css-Property": "value"); 
    

    (quotes around the some-custom-Css-property) - however this results in no change/animation and an invalid tween value error message on the developer console.

     

    So the question is: how would I go about animating custom css variables with TweenMax (GSAP)?

     

    Thanks for any help :)

     

    EDIT:

     

    I have tried using classes through 

    TweenMax.to("SomeElement", 5, {className:"class2"});
    

    But this changed the element style as if I had declared it in css with a 

    SomeElement:hover {}

    style (as in it does not animate, just changes immediately)

×
×
  • Create New...