Skip to content

Instantly share code, notes, and snippets.

@nola
Created January 30, 2014 15:17
Show Gist options
  • Select an option

  • Save nola/8710737 to your computer and use it in GitHub Desktop.

Select an option

Save nola/8710737 to your computer and use it in GitHub Desktop.
Logs out a property of the object 'obj'
var obj = {opacity:0};
TweenLite.to(obj, 2, {opacity:0.5, onUpdate:report});
function report() {
console.log(obj.opacity);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment