<?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/"
		>
<channel>
	<title>Comments on: jQuery Parallax 0.2 &#8211; Minor updates</title>
	<atom:link href="http://www.dom111.co.uk/blog/coding/jquery-parallax-0-2-minor-updates/125/feed" rel="self" type="application/rss+xml" />
	<link>http://www.dom111.co.uk/blog/coding/jquery-parallax-0-2-minor-updates/125</link>
	<description>Move along. Nothing to see here.</description>
	<lastBuildDate>Sat, 10 Jul 2010 21:13:52 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: dom111</title>
		<link>http://www.dom111.co.uk/blog/coding/jquery-parallax-0-2-minor-updates/125/comment-page-1#comment-238</link>
		<dc:creator>dom111</dc:creator>
		<pubDate>Tue, 13 Apr 2010 09:47:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.dom111.co.uk/blog/?p=125#comment-238</guid>
		<description>Hi Colir,

That&#039;s not a bad improvement! If I make a future version, I&#039;ll be sure to append the function like this. The .mousemove() and .click() handlers are nice and easy to set up the prototype, so it&#039;s mainly laziness that means I haven&#039;t changed it :)

Thanks!

Dom</description>
		<content:encoded><![CDATA[<p>Hi Colir,</p>
<p>That&#8217;s not a bad improvement! If I make a future version, I&#8217;ll be sure to append the function like this. The .mousemove() and .click() handlers are nice and easy to set up the prototype, so it&#8217;s mainly laziness that means I haven&#8217;t changed it <img src='http://www.dom111.co.uk/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Thanks!</p>
<p>Dom</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Colir</title>
		<link>http://www.dom111.co.uk/blog/coding/jquery-parallax-0-2-minor-updates/125/comment-page-1#comment-237</link>
		<dc:creator>Colir</dc:creator>
		<pubDate>Tue, 13 Apr 2010 09:11:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.dom111.co.uk/blog/?p=125#comment-237</guid>
		<description>Hi dom
Thanks for this plugin, it&#039;s really efficient !
I&#039;ve just one sugges:
Change the  :
&quot; $((options.useHTML) ? &#039;html&#039; : this).mousemove(function(e) { &quot;
by :
 &quot; $((options.useHTML) ? &#039;html&#039; : this).bind(&#039;mousemove&#039;,(function(e) { &quot;

With the bind event we have an easy way to stop the parallax effect by using unbind()

This can be usefull in certain case

thanks again for this plug !</description>
		<content:encoded><![CDATA[<p>Hi dom<br />
Thanks for this plugin, it&#8217;s really efficient !<br />
I&#8217;ve just one sugges:<br />
Change the  :<br />
&#8221; $((options.useHTML) ? &#8216;html&#8217; : this).mousemove(function(e) { &#8221;<br />
by :<br />
 &#8221; $((options.useHTML) ? &#8216;html&#8217; : this).bind(&#8216;mousemove&#8217;,(function(e) { &#8221;</p>
<p>With the bind event we have an easy way to stop the parallax effect by using unbind()</p>
<p>This can be usefull in certain case</p>
<p>thanks again for this plug !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dom111</title>
		<link>http://www.dom111.co.uk/blog/coding/jquery-parallax-0-2-minor-updates/125/comment-page-1#comment-194</link>
		<dc:creator>dom111</dc:creator>
		<pubDate>Thu, 10 Sep 2009 21:23:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.dom111.co.uk/blog/?p=125#comment-194</guid>
		<description>That looks like a pretty robust solution... Was that for a particular browser? I do most of my testing in WebKit so I do tend to neglect the others on occasion...</description>
		<content:encoded><![CDATA[<p>That looks like a pretty robust solution&#8230; Was that for a particular browser? I do most of my testing in WebKit so I do tend to neglect the others on occasion&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: quickredfox</title>
		<link>http://www.dom111.co.uk/blog/coding/jquery-parallax-0-2-minor-updates/125/comment-page-1#comment-192</link>
		<dc:creator>quickredfox</dc:creator>
		<pubDate>Thu, 10 Sep 2009 13:25:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.dom111.co.uk/blog/?p=125#comment-192</guid>
		<description>I&#039;ve had to make a minor change to your code in order to make untouched y and x axis remain untouched... probably not the best way but here&#039;s what I did:

&lt;pre&gt;
          var coords = $(options.elements[i].selector).css(&#039;backgroundPosition&#039;).split(&#039; &#039;);
          opts[&#039;background-position&#039;] = &#039;&#039; + ((&#039;background-position-x&#039; in opts) ? opts[&#039;background-position-x&#039;] : coords[0]) + &#039; &#039; + ((&#039;background-position-y&#039; in opts) ? opts[&#039;background-position-y&#039;] : coords[1]);
&lt;/pre&gt;

around the &quot;fix for firefox&quot;</description>
		<content:encoded><![CDATA[<p>I&#8217;ve had to make a minor change to your code in order to make untouched y and x axis remain untouched&#8230; probably not the best way but here&#8217;s what I did:</p>
<pre>
          var coords = $(options.elements[i].selector).css('backgroundPosition').split(' ');
          opts['background-position'] = '' + (('background-position-x' in opts) ? opts['background-position-x'] : coords[0]) + ' ' + (('background-position-y' in opts) ? opts['background-position-y'] : coords[1]);
</pre>
<p>around the &#8220;fix for firefox&#8221;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
