[jquery-dev] Issues with fade animations

2009-11-08 Thread Jörn Zaefferer
Hi, I've built a testpage to document this issues with fadeIn/Out: http://jquery-ui.googlecode.com/svn/branches/labs/fadequeue/index.html As written on that page, the issues are: - Without using stop(), animations just queue up, thats inacceptable - With just using stop(), styles end up

Re: [jquery-dev] Issues with fade animations

2009-11-08 Thread John Resig
So it seems like a couple things would fix your problems: 1) If fadeIn or fadeOut is called while a partial opacity is shown then animate to the final state, starting from the current opacity (right now fadeIn, in particular, won't run). 2) Make the actual time to run the animation be equal to

Re: [jquery-dev] Issues with fade animations

2009-11-08 Thread Jörn Zaefferer
That sounds great. I think in case of my Tooltip plugin there is an additional problem, where a mouseover event doesn't happen when the mouse is over a tooltip element that still fades out. I may be able to fix that with mousemove. So, if we can get these three fixed and that other issue, the

Re: [jquery-dev] Issues with fade animations

2009-11-08 Thread John Resig
Absolutely - probably one ticket for each and just link back to this thread. --John On Sun, Nov 8, 2009 at 2:34 PM, Jörn Zaefferer joern.zaeffe...@googlemail.com wrote: That sounds great. I think in case of my Tooltip plugin there is an additional problem, where a mouseover event doesn't

Re: [jquery-dev] Issues with fade animations

2009-11-08 Thread Karl Swedberg
Are these issues with fadeIn / fadeOut any different from those with slideUp / slideDown? There is a problem with repeated slide animations causing the height to no longer go to the element's full height if stopped in the middle. Is it possible to have a more generic fix that would deal

Re: [jquery-dev] Issues with fade animations

2009-11-08 Thread Karl Swedberg
excellent. thanks, Jörn! --Karl On Nov 8, 2009, at 12:21 PM, Jörn Zaefferer wrote: Good point Karl. I think points one and two from John's first reply apply for slideUp/Down as well. I'll wait for John to confirm, then extend my testpage and create tickets for all three issues. Jörn

Re: [jquery-dev] Issues with fade animations

2009-11-08 Thread Phil Dokas
On Nov 8, 2009, at 11:25 AM, Karl Swedberg wrote: Are these issues with fadeIn / fadeOut any different from those with slideUp / slideDown? There is a problem with repeated slide animations causing the height to no longer go to the element's full height if stopped in the middle. Is it