Jump to content
Search Community

kez1304

Members
  • Posts

    33
  • Joined

  • Last visited

Everything posted by kez1304

  1. Yeah, I can see their point. You'd think that the customer is always right would shine through a little, but oh well. Thanks for the info though! I've just updated my php script to use a variable for the patch number. Should be simple enough to update to new versions in the future.
  2. Right, I found out what was wrong. I was using the CDN: https://cdnjs.cloudflare.com/ajax/libs/gsap/latest/TweenMax.min.js (cdnjs.cloudflare.com/ajax/libs/gsap/latest/TweenMax.min.js) Instead of: https://cdnjs.cloudflare.com/ajax/libs/gsap/1.18.0/TweenMax.min.js (cdnjs.cloudflare.com/ajax/libs/gsap/1.18.0/TweenMax.min.js) The latest is only: Can we get this fixed? My development environment will thank you.
  3. Hi guys, I've just discovered this video: https://www.youtube.com/watch?v=shn2CUF0gWM Which ties in with these forum posts: http://greensock.com/forums/topic/12208-alternating-property-direction-with-any-array/ And: http://greensock.com/forums/topic/12266-vote-on-new-feature-for-staggered-animations/ I can't actually find any info on how to get it working in a project I'm currently on... Is there a beta build available somewhere that I can use or something? If so, where? Also, in the future, where should I be looking for information on the subject? Checking the docs for TimelineMax.staggerFrom, etc., yields nothing of note. Thanks!
  4. That would work, but unfortunately this is in the middle of a timeline, and it's just one part of the animation. Is there a simple way to start a particular tween part way through within a timeline?
  5. Hi guys, Just a quick query... Using the easing tool at: http://greensock.com/ease-visualizer If you switch to SteppedEase, with it on the graph (as it's clearer), is there any way to force it to take its first 'step' immediately? With config(2) set, it goes along the following axis: x,y,x,y,x Is there a simple way to switch it so that it goes: y,x,y,x I realise that's a slightly shorter transition, and I have worked out that I can use delays in the timeline to achieve the result I'm looking for, I'm just wondering if such an inherent ability exists within GSAP as standard? Thanks a bunch!
  6. Awesome guys, Thanks for your speedy replies, and fantastic examples. You've confirmed my suspicions, which is great news. I have a new issue, but I'll make a separate post about it. A big thanks to both of you!
  7. Hi guys, Looking for just a quick yes or no, as its been a long day, and I can't find the energy to write a full demo/test. If I create a timeline like: var tl = new TimelineLite(); tl.to('.someClass', 3, {height: 100}); Then I save that timeline in a data attribute like: $('body').data('someTimeline', tl); Are these then referencing the same timeline, as an object? Or has it just copied over the values, as a variable? As it's instantiated, I'd assume it's being used by reference, but I can't be sure. In case I'm not clear enough, if I were to run the following: tl.seek(1); Would this change be represented within: $('body').data('someTimeline').play(); And vice versa? Thanks a lot!
  8. kez1304

    animating steps

    You can use the image: http://ssl.gstatic.com/ui/v1/icons/mail/im/emotisprites/wink2.png Instead, just change it in the background.
×
×
  • Create New...