<?xml version="1.0" encoding="UTF-8"?><rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:series="http://unfoldingneurons.com/"
> <channel><title>Comments on: MooTools PulseFade&#160;Plugin</title> <atom:link href="http://davidwalsh.name/mootools-pulsefade-plugin/feed" rel="self" type="application/rss+xml" /><link>http://davidwalsh.name/mootools-pulsefade-plugin</link> <description>Legendary scribbles about JavaScript, HTML5, AJAX, PHP, CSS, and ∞.</description> <lastBuildDate>Thu, 09 Feb 2012 10:59:12 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3</generator> <item><title>By: Ischia</title><link>http://davidwalsh.name/mootools-pulsefade-plugin/comment-page-1#comment-19089</link> <dc:creator>Ischia</dc:creator> <pubDate>Wed, 28 Jul 2010 18:41:18 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=1458#comment-19089</guid> <description>hi David :) thx for your works!I notice that with IE7 or 8, using this plugin fadeing an element like a div with some text in it, the text looks very strange while it is fadeing, it becomes irregular. This doesnt happen in FF.Any solution?</description> <content:encoded><![CDATA[<p>hi David :) thx for your works!</p><p>I notice that with IE7 or 8, using this plugin fadeing an element like a div with some text in it, the text looks very strange while it is fadeing, it becomes irregular. This doesnt happen in FF.</p><p>Any solution?</p> ]]></content:encoded> </item> <item><title>By: fakessh</title><link>http://davidwalsh.name/mootools-pulsefade-plugin/comment-page-1#comment-18388</link> <dc:creator>fakessh</dc:creator> <pubDate>Thu, 24 Jun 2010 07:33:24 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=1458#comment-18388</guid> <description>I would be interested in pulse links
how to thatcordialement la france aka /fakessh/</description> <content:encoded><![CDATA[<p>I would be interested in pulse links<br
/> how to that</p><p>cordialement la france aka /fakessh/</p> ]]></content:encoded> </item> <item><title>By: merth</title><link>http://davidwalsh.name/mootools-pulsefade-plugin/comment-page-1#comment-16652</link> <dc:creator>merth</dc:creator> <pubDate>Sat, 27 Mar 2010 10:44:05 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=1458#comment-16652</guid> <description>hi devid big problem mootools help mi plase very plase :(</description> <content:encoded><![CDATA[<p>hi devid big problem mootools help mi plase very plase :(</p> ]]></content:encoded> </item> <item><title>By: Gediminas</title><link>http://davidwalsh.name/mootools-pulsefade-plugin/comment-page-1#comment-11304</link> <dc:creator>Gediminas</dc:creator> <pubDate>Sat, 15 Aug 2009 13:24:14 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=1458#comment-11304</guid> <description>I was searching for&lt;blockquote&gt;
&lt; blink &gt;
&lt;/blockquote&gt;alternative here, so how to rewrite this script to get pulsing without clicking start?</description> <content:encoded><![CDATA[<p>I was searching for</p><blockquote><p> &lt; blink &gt;</p></blockquote><p>alternative here, so how to rewrite this script to get pulsing without clicking start?</p> ]]></content:encoded> </item> <item><title>By: Kevin Valdek</title><link>http://davidwalsh.name/mootools-pulsefade-plugin/comment-page-1#comment-7805</link> <dc:creator>Kevin Valdek</dc:creator> <pubDate>Sun, 15 Feb 2009 00:16:38 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=1458#comment-7805</guid> <description>Nice Mooing. This post grabbed me as I worked out a Class with similar functionality for some months ago, always interesting to see different approaches and solutions.I remember that I also went with the opacity at first, but in IE6, it failed. Tried your demo in IE6 and found the same result (no pulsing). Not entirely impossible that it&#039;s just a spook by my ie-browser (as I run IEs4Linux).So instead of the opacity property I used background-color. Now I know that this would not work with your demo as it pulses an image, but in my case, it fulfilled its task :]I cannot link to my Class, so I hope you don&#039;t mind if I post my code in this comment.var Blinker = new Class({ // horrible nameImplements: [ Options ],options: {
color: &#039;#fff&#039;, // fade to color
duration: 500,
times: 1 // how many blinks
},initialize: function( target, options ){
this.setOptions(options);
this.target = $(target);
this.target.store(&#039;nativeBg&#039;, this.target.getStyle(&#039;background-color&#039;));
this.fx = new Fx.Morph( this.target, { duration: this.options.duration } );
this.count = this.options.times;
},blink: function(){
if( this.count &gt; 0 ) {
this.fx.start( { &#039;background-color&#039;: this.options.color } ).chain( function() {
this.fx.start( { &#039;background-color&#039;: this.target.retrieve(&#039;nativeBg&#039;) } );
}.bind( this ));
this.count--;
this.blink.delay( this.options.interval * 2.2, this ); // 0.2 buffer
} else {
this.count = this.options.times; // reset
}
}
}); </description> <content:encoded><![CDATA[<p>Nice Mooing. This post grabbed me as I worked out a Class with similar functionality for some months ago, always interesting to see different approaches and solutions.</p><p>I remember that I also went with the opacity at first, but in IE6, it failed. Tried your demo in IE6 and found the same result (no pulsing). Not entirely impossible that it&#8217;s just a spook by my ie-browser (as I run IEs4Linux).</p><p>So instead of the opacity property I used background-color. Now I know that this would not work with your demo as it pulses an image, but in my case, it fulfilled its task :]</p><p>I cannot link to my Class, so I hope you don&#8217;t mind if I post my code in this comment.</p><p>var Blinker = new Class({ // horrible name</p><p> Implements: [ Options ],</p><p> options: {<br
/> color: &#8216;#fff&#8217;, // fade to color<br
/> duration: 500,<br
/> times: 1 // how many blinks<br
/> },</p><p> initialize: function( target, options ){<br
/> this.setOptions(options);<br
/> this.target = $(target);<br
/> this.target.store(&#8216;nativeBg&#8217;, this.target.getStyle(&#8216;background-color&#8217;));<br
/> this.fx = new Fx.Morph( this.target, { duration: this.options.duration } );<br
/> this.count = this.options.times;<br
/> },</p><p> blink: function(){<br
/> if( this.count &gt; 0 ) {<br
/> this.fx.start( { &#8216;background-color&#8217;: this.options.color } ).chain( function() {<br
/> this.fx.start( { &#8216;background-color&#8217;: this.target.retrieve(&#8216;nativeBg&#8217;) } );<br
/> }.bind( this ));<br
/> this.count&#8211;;<br
/> this.blink.delay( this.options.interval * 2.2, this ); // 0.2 buffer<br
/> } else {<br
/> this.count = this.options.times; // reset<br
/> }<br
/> }<br
/> });</p> ]]></content:encoded> </item> <item><title>By: rpflo</title><link>http://davidwalsh.name/mootools-pulsefade-plugin/comment-page-1#comment-7787</link> <dc:creator>rpflo</dc:creator> <pubDate>Fri, 13 Feb 2009 03:13:40 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=1458#comment-7787</guid> <description>Well crap, the &lt;marquee&gt; worked in the preview of that ridiculous comment of mine...Anyway, this actually makes sense in some places: a recording indicator for time tracking, replacement for the ever-loved el.highlight(), or &quot;new post&quot; icons on a forum ... lots of real uses.And of course the body tag could use some pulsing^^</description> <content:encoded><![CDATA[<p>Well crap, the &lt;marquee&gt; worked in the preview of that ridiculous comment of mine&#8230;</p><p>Anyway, this actually makes sense in some places: a recording indicator for time tracking, replacement for the ever-loved el.highlight(), or &#8220;new post&#8221; icons on a forum &#8230; lots of real uses.</p><p>And of course the body tag could use some pulsing^^</p> ]]></content:encoded> </item> <item><title>By: rpflo</title><link>http://davidwalsh.name/mootools-pulsefade-plugin/comment-page-1#comment-7786</link> <dc:creator>rpflo</dc:creator> <pubDate>Fri, 13 Feb 2009 03:07:54 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=1458#comment-7786</guid> <description>awesome !!!</description> <content:encoded><![CDATA[<p>awesome !!!</p> ]]></content:encoded> </item> <item><title>By: david</title><link>http://davidwalsh.name/mootools-pulsefade-plugin/comment-page-1#comment-7783</link> <dc:creator>david</dc:creator> <pubDate>Thu, 12 Feb 2009 20:36:54 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=1458#comment-7783</guid> <description>&lt;p&gt;Mark Sanborn does not fear the reaper, but does fear the webmasters.  I slay the webmasters.&lt;/p&gt;</description> <content:encoded><![CDATA[<p>Mark Sanborn does not fear the reaper, but does fear the webmasters.  I slay the webmasters.</p> ]]></content:encoded> </item> <item><title>By: Mark Sanborn</title><link>http://davidwalsh.name/mootools-pulsefade-plugin/comment-page-1#comment-7782</link> <dc:creator>Mark Sanborn</dc:creator> <pubDate>Thu, 12 Feb 2009 19:48:37 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=1458#comment-7782</guid> <description>I hope the &quot;webmasters&quot; don&#039;t get a hold of this...</description> <content:encoded><![CDATA[<p>I hope the &#8220;webmasters&#8221; don&#8217;t get a hold of this&#8230;</p> ]]></content:encoded> </item> <item><title>By: keif</title><link>http://davidwalsh.name/mootools-pulsefade-plugin/comment-page-1#comment-7781</link> <dc:creator>keif</dc:creator> <pubDate>Thu, 12 Feb 2009 19:20:17 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=1458#comment-7781</guid> <description>Quit bring back the blink tag! :)I suffer from the same &quot;keep the class generic&quot; issue - but hey, it&#039;s a journey, not a destination.@Alexander - console.log, being specific for Firebug, can create unneeded issues with example code (especially since most web developer blog audiences arrive on a plethora of browsers). Alert is generic and universal :)</description> <content:encoded><![CDATA[<p>Quit bring back the blink tag! :)</p><p>I suffer from the same &#8220;keep the class generic&#8221; issue &#8211; but hey, it&#8217;s a journey, not a destination.</p><p>@Alexander &#8211; console.log, being specific for Firebug, can create unneeded issues with example code (especially since most web developer blog audiences arrive on a plethora of browsers). Alert is generic and universal :)</p> ]]></content:encoded> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced (User agent is rejected)
Database Caching 1/17 queries in 0.011 seconds using disk: basic
Object Caching 865/866 objects using disk: basic

Served from: davidwalsh.name @ 2012-02-09 09:13:11 -->
