Jump to content
Search Community

Search the Community

Showing results for tags 'oncomplete pause'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • GreenSock Forums
    • GSAP
    • Banner Animation
    • Jobs & Freelance
  • Flash / ActionScript Archive
    • GSAP (Flash)
    • Loading (Flash)
    • TransformManager (Flash)

Product Groups

  • Club GreenSock
  • TransformManager
  • Supercharge

Categories

There are no results to display.


Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Personal Website


Twitter


CodePen


Company Website


Location


Interests

Found 1 result

  1. Hey, guys. Continuing to work with my can rotation project. Here is the code: project.canAnimation = function() { var element = $(".text-element"); var tl = new TimelineMax({paused: true}); var $bottle = $('.bottle-block'); var $sub_title = $('.sub-title'); var $ready_status = $('.ready-status'); var $share_block = $('.share-section'); var $share_block_element = $('.share-section li'); tl.to(element, 0.75, {y: -200,rotationX: -90, scale: .75, ease:Expo.easeOut}) .fromTo(element, 0.75, {y: 200,rotationX: 90, scale: .75}, {onComplete: project.statusGenerator(), y: 0, rotationX: 0, scale: 1, ease:Expo.easeOut, immediateRender:false}) .to($bottle, 1, {y: '-=70'}, 1.75) .to($sub_title, 0.75, {opacity: 0}, 1.75) .from($ready_status, 1, {opacity: 0, y: 30}) .staggerFrom($share_block_element, 2, {y: 30, rotationX: 45, transformOrigin:"left 50% -50", opacity: 0, ease: Elastic.easeOut}, 0.25); function step_1() { tl.play(); } function step_2() { tl.to(element, 0.75, {y: -200,rotationX: -90, scale: .75, ease:Expo.easeOut}) .fromTo(element, 0.75, {y: 200,rotationX: 90, scale: .75}, {onComplete: project.statusGenerator(), y: 0, rotationX: 0, scale: 1, ease:Expo.easeOut, immediateRender:false}) } $('#generate-status').on('click', function(){ if(!$(this).hasClass('step-2')){ step_1(); $(this).addClass('step-2'); } else { step_2(); } }); } The problem that onComplete: project.statusGenerator() inits on page load with its related tasks despite the fact that timeline is paused. But I want to make it happen as I want - on complete. What am I missing?
×
×
  • Create New...