Gordon wrote:
In reflection, I think what I need is a queue into which classes of
animations can be inserted. All the animation events in a class get
executed together, but each class in the queue is executed one after
the other. Maybe something like this:
animQueue.addClass ('hideClass');
an
I've been trying to pick apart the fzqueue plugin and the code Erik
wrote, but unfortunately I can't figure out how it actually works. It
seems that it's based around anarray that's being used as a FIFo
structure, but how the code knows that one animation has ended is a
total mystery to me.
In r
Paul Bakaus wrote:
Jörn,
Interface in his current version has this 'stopping' feature you
requested, until John releases the new written fx functions. Check it
out!
D'oh, should have thought of that. Thanks Paul!
--
Jörn Zaefferer
http://bassistance.de
Okay, thanks to everyone who responded, I really appreciate the help.
Unfortunately this is turning out to be a tougher problem to solve
than I first thought.
Basically, what needs to happen is 1) All elements that have not been
selected and are visible need to fade out. 2) All elements that have
Jörn,
Interface in his current version has this 'stopping' feature you
requested, until John releases the new written fx functions. Check it
out!
Paul
On May 24, 10:51 pm, Jörn Zaefferer <[EMAIL PROTECTED]> wrote:
> Brandon Aaron wrote:
>
> > Actualy, the hoverIntent plugin is perfect for this.
Brandon Aaron wrote:
Actualy, the hoverIntent plugin is perfect for this.
http://cherne.net/brian/resources/jquery.hoverIntent.html
Not quite, it has the same queuing issue. But its still in interesting
plugin to build the tooltip upon. Thanks.
--
Jörn Zaefferer
http://bassistance.de
Actualy, the hoverIntent plugin is perfect for this.
http://cherne.net/brian/resources/jquery.hoverIntent.html
--
Brandon Aaron
On 5/24/07, Jörn Zaefferer <[EMAIL PROTECTED]> wrote:
Brandon Aaron wrote:
>
> Sure but I wonder what that would look like? Could you provide a more
> detailed use-c
Brandon Aaron wrote:
Sure but I wonder what that would look like? Could you provide a more
detailed use-case?
Sure. Basically it jus this:
tooltipElements.hover( function() {
tooltip.html( this.title ).fadeIn();
}, function() {
tooltip.hide();
});
With that code, hovering over multiple too
Sure but I wonder what that would look like? Could you provide a more
detailed use-case?
--
Brandon Aaron
On 5/24/07, Jörn Zaefferer <[EMAIL PROTECTED]> wrote:
Brandon Aaron wrote:
>
> Here is a pretty quick and dirty implementation of an fxqueue:
> http://brandonaaron.net/jquery/plugins/fxqu
Brandon Aaron wrote:
Here is a pretty quick and dirty implementation of an fxqueue:
http://brandonaaron.net/jquery/plugins/fxqueue/
You can see the test page here:
http://brandonaaron.net/jquery/plugins/fxqueue/test/test.html
And I just checked it into the plugins SVN.
http://jqueryjs.googlec
Ahh good catch! Thanks Aaron. Fixed.
I used a semi-colon on the line above instead of a comma. :)
--
Brandon Aaron
On 5/24/07, Aaron Heimlich <[EMAIL PROTECTED]> wrote:
Pretty cool stuff Brandon!
Small typo though:
jquery.fxqueue.js line 37:
$this = $( args.shift() );
should be
var $this
Pretty cool stuff Brandon!
Small typo though:
jquery.fxqueue.js line 37:
$this = $( args.shift() );
should be
var $this = $( args.shift() );
On 5/24/07, Brandon Aaron <[EMAIL PROTECTED]> wrote:
Glad it is working for you. :)
I just updated it to fix the scope of the callback and you can
On Thursday, May 24, 2007 7:01 AM Gordon <> said:
> Thanks. I was pretty angry at that response, and yes, I might have
> worded some of it better, but I really was just askign for help
> looking for a plugin/solution to the problem, that's hardly askign
> someone else to do my work for me.
Serio
Glad it is working for you. :)
I just updated it to fix the scope of the callback and you can now
pass params just like you can with animate. Check the new test page to
see.
http://brandonaaron.net/jquery/plugins/fxqueue/test/test.html
--
Brandon Aaron
On 5/24/07, Gordon <[EMAIL PROTECTED]> w
I'm sorry you didn't like my response. I'm all for not antagonizing
people and not being condescending and not inciting a flame war, and I
didn't do any of those things. Given that I 1) didn't call him any
names or put him down or anything like that, 2) explained how he could
implement a solution
Brandon, you're a total lifesaver :)
On May 24, 2:41 pm, "Brandon Aaron" <[EMAIL PROTECTED]> wrote:
> I just updated the test to include an empty selector as well.
>
> --
> Brandon Aaron
>
> On 5/24/07, Brandon Aaron <[EMAIL PROTECTED]> wrote:
>
> > Here is a pretty quick and dirty implementation
Thanks to everyone who responded, it's really appreciated. I'm
looking through the various solutions now.
On May 24, 11:47 am, Gordon <[EMAIL PROTECTED]> wrote:
> I've already posted on this topic before, but I really am gettign
> quite desperate as the project deadline looms and I still don't h
Thanks. I was pretty angry at that response, and yes, I might have
worded some of it better, but I really was just askign for help
looking for a plugin/solution to the problem, that's hardly askign
someone else to do my work for me.
As for code, I wish I could post it but it's already been made c
Hi Erik,
I know its easy to misinterpret emails at times. God knows that I've
done it several times myself. In looking at Gordon's email, I really
didn't see anything that would lead me to believe he was demanding our
help. I think he's just in a pickle and is desperately seeking guidance
fr
Brandon, that is a nice little plugin, nice job.
On 5/24/07, Brandon Aaron <[EMAIL PROTECTED]> wrote:
Here is a pretty quick and dirty implementation of an fxqueue:
http://brandonaaron.net/jquery/plugins/fxqueue/
You can see the test page here:
http://brandonaaron.net/jquery/plugins/fxqueue/t
I just updated the test to include an empty selector as well.
--
Brandon Aaron
On 5/24/07, Brandon Aaron <[EMAIL PROTECTED]> wrote:
Here is a pretty quick and dirty implementation of an fxqueue:
http://brandonaaron.net/jquery/plugins/fxqueue/
You can see the test page here:
http://brandonaaro
Here is a pretty quick and dirty implementation of an fxqueue:
http://brandonaaron.net/jquery/plugins/fxqueue/
You can see the test page here:
http://brandonaaron.net/jquery/plugins/fxqueue/test/test.html
And I just checked it into the plugins SVN.
http://jqueryjs.googlecode.com/svn/trunk/plugi
@erik,
I usually don't say stuff like this but I kinda feel your response warrants
it. I don't see anything in Gordon message that required you to come at him
like that. Yes, he may have worded a few things here and there a little
better, but coming at him like he was demanding you do his work
I could have sworn I've seen a plugin that would do that. Anyway,
couldn't you do something like this:
var a1 = $('.class1');
if (a1.length > 0)
{
a1.animate({...}, run_second_animation);
}
else
{
run_second_animation();
}
function run_second_animation()
{
// use the same construct for
On 5/24/07, Gordon <[EMAIL PROTECTED]> wrote:
I've already posted on this topic before, but I really am gettign
quite desperate as the project deadline looms and I still don't have a
solution.
...
Sorry to keep asking this but like I said, it's getting pretty urgent.
When it comes to open so
25 matches
Mail list logo