Jump to content
Search Community

jQurery .stop in greensock

Fahim test
Moderator Tag

Go to solution Solved by Diaco,

Warning: Please note

This thread was started before GSAP 3 was released. Some information, especially the syntax, may be out of date for GSAP 3. Please see the GSAP 3 migration guide and release notes for more information about how to update the code to GSAP 3's syntax. 

Recommended Posts

Hi

 

Again i have a problem and i need help.

 

I have written a code to animate svg on hover and it does so also but the problem is when i quickly hover again and again it redraws and looks broken i looked in jquery they have something .stop(true, false) with .animate but which cant be used as i am using greensock and it works differently so i tried with pause but its just pauses the animation.

 

I have looked in forum and found this but i am not sure how can i +=20 with SVG

http://greensock.com/forums/topic/8786-equivalent-of-jquery-stop/

 

I hope i have created a proper codepen this time.

 

Thanks,

Fahim

See the Pen gaKjwp by osricmacon (@osricmacon) on CodePen

Link to comment
Share on other sites

  • Solution

Hi Fahim  :)

 

that's better to generate tween or timeline out of the hover functions and just play/reverse ( or whatever ) with hover .

 

pls check this thread : http://greensock.com/forums/topic/12737-opacity-on-hover/

 

something like this : 

$(".items").each(function(index, element){
  var tl = new TimelineLite({paused:true});
  // add your timeline tweens here
  //.....
  //....
  element.animation = tl;
});
$(".items").hover(over, out);
function over(){ this.animation.play() };
function out(){ this.animation.reverse() };
  • Like 2
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...