Comments on: Simple pulse plugin for jQuery https://j11y.io/snippets/simple-pulse-plugin-for-jquery/ Sun, 22 Mar 2015 15:39:22 +0000 hourly 1 https://wordpress.org/?v=5.0.13 By: Seemly https://j11y.io/snippets/simple-pulse-plugin-for-jquery/#comment-1645 Mon, 16 Aug 2010 12:30:04 +0000 https://j11y.io/?p=1305#comment-1645 Awesome plugin. This is exactly what I have been looking for on my latest web project.

It’s especially handy – as Alex states in an earlier comment – that it saves the need of including the UI library, etc.

Much appreciation. I will be including a link in an upcoming blog post (when I manage to get my blog live).

Kudos!

]]>
By: Terry https://j11y.io/snippets/simple-pulse-plugin-for-jquery/#comment-1644 Tue, 20 Jul 2010 17:04:51 +0000 https://j11y.io/?p=1305#comment-1644 Hi James,
How do you restart the Pulse. I stop the pulse to do some processing, but if a condition isn’t met, I would like to restart the pulse. From the comments, I’m using $(this).stop().fadeTo(‘fast’, 1); to stop things while I process.

Regards,
Terry

]]>
By: James https://j11y.io/snippets/simple-pulse-plugin-for-jquery/#comment-1643 Wed, 26 May 2010 16:13:16 +0000 https://j11y.io/?p=1305#comment-1643 Also, @Toomany, you should specify all CSS properties in the first object (with “opacity”). The second object (with “times”, “duration” etc.) is just for extra options.

]]>
By: James https://j11y.io/snippets/simple-pulse-plugin-for-jquery/#comment-1642 Wed, 26 May 2010 16:09:44 +0000 https://j11y.io/?p=1305#comment-1642 @Chris, works for me… http://jsfiddle.net/9sWRT/

@Toomany, what background colors do you want to pulse to/from? You need more than one. E.g. http://jsfiddle.net/7sQ5c/

]]>
By: Chris https://j11y.io/snippets/simple-pulse-plugin-for-jquery/#comment-1641 Wed, 26 May 2010 15:45:26 +0000 https://j11y.io/?p=1305#comment-1641 Can anyone confirm this works with JQuery 1.4.2? I am having trouble getting it to work after loading 1.4.2 (worked fine in 1.3.1). I am using the Google API version…

Thanks!

]]>
By: Toomany https://j11y.io/snippets/simple-pulse-plugin-for-jquery/#comment-1640 Thu, 20 May 2010 22:50:03 +0000 https://j11y.io/?p=1305#comment-1640 I’m linking to the Jquery color doc (http://dev.jquery.com/view/trunk/plugins/color/jquery.color.js) and trying to use the backgroundColor feature:

$(“#myDiv”).pulse({
opacity: [0,1]
}, {
duration: 100,
backgroundColor: [‘red’],
times: 3,
easing: ‘linear’
});

And no go…Does this still work with Jquery 1.4.2?

]]>
By: Marcus Tucker https://j11y.io/snippets/simple-pulse-plugin-for-jquery/#comment-1639 Mon, 17 May 2010 13:43:17 +0000 https://j11y.io/?p=1305#comment-1639 Handy little plugin, thanks!

Please also register my vote for continuous/infinite pulsing, perhaps using the “times” value “-1”

And it would be nice to be able to specify different easings for in and out rather than just the same one for both. Or is that already possible somehow?

]]>
By: Schrumpfschlauch https://j11y.io/snippets/simple-pulse-plugin-for-jquery/#comment-1638 Wed, 28 Apr 2010 13:16:36 +0000 https://j11y.io/?p=1305#comment-1638 cool, nice, best, thanks for the share 🙂

]]>
By: James https://j11y.io/snippets/simple-pulse-plugin-for-jquery/#comment-1637 Wed, 24 Mar 2010 11:42:40 +0000 https://j11y.io/?p=1305#comment-1637 @amit, I think you want to change [0,9] to [0,1].

@John, I’ll probably be adding this feature in the future but for now just use a big number that’ll probably never be reached (e.g. 99999).

]]>
By: John Natoli https://j11y.io/snippets/simple-pulse-plugin-for-jquery/#comment-1636 Sun, 21 Mar 2010 14:56:33 +0000 https://j11y.io/?p=1305#comment-1636 Thanks for providing this! Is it possible to tell the element to pulse continuously (times: infinite) until it’s told to stop? What I’m trying to do is have an element start pulsing when hovered and keep pulsing until mouseout.

]]>