<?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 Hover Effect Image Gallery For eCommerce</title>
	<atom:link href="http://www.web-design-talk.co.uk/200/jquery-hover-effect-image-gallery-for-ecommerce/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.web-design-talk.co.uk/200/jquery-hover-effect-image-gallery-for-ecommerce/</link>
	<description>Web Design &#38; Development Blog</description>
	<lastBuildDate>Sat, 04 Feb 2012 19:06:39 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Viktore</title>
		<link>http://www.web-design-talk.co.uk/200/jquery-hover-effect-image-gallery-for-ecommerce/comment-page-1/#comment-25697</link>
		<dc:creator>Viktore</dc:creator>
		<pubDate>Wed, 18 Jan 2012 16:58:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.web-design-talk.co.uk/?p=200#comment-25697</guid>
		<description>Hi Rob,

Works flawlessly! Is there a way to make the script with a mouse click instead of a mouse hover?

I tried replacing:
$(&#039;#thumbs ul li a&#039;).hover(

with:
$(&#039;#thumbs ul li a&#039;).click(

But it opens the image in a new window.
Any idea how to tweak this properly?

Thanks!</description>
		<content:encoded><![CDATA[<p>Hi Rob,</p>
<p>Works flawlessly! Is there a way to make the script with a mouse click instead of a mouse hover?</p>
<p>I tried replacing:<br />
$(&#8216;#thumbs ul li a&#8217;).hover(</p>
<p>with:<br />
$(&#8216;#thumbs ul li a&#8217;).click(</p>
<p>But it opens the image in a new window.<br />
Any idea how to tweak this properly?</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob</title>
		<link>http://www.web-design-talk.co.uk/200/jquery-hover-effect-image-gallery-for-ecommerce/comment-page-1/#comment-19458</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Sun, 18 Dec 2011 21:07:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.web-design-talk.co.uk/?p=200#comment-19458</guid>
		<description>Thanks for the comment. I have used this in the past with that exact slider (as it&#039;s literally an extra 2KB of JavaScript). I found changing the trigger from hover to click worked well. 

For your scrolling issue you could make use of the JCarouselLIte callbacks. They are fairly easy to deal with as they return a JavaScript object (have a look at the console if you enable logging). E.g. passing the letter &quot;a&quot; to the afterEnd function would give you a huge &quot;a&quot; object to work with. E.g. to slowly fadeOut the old image and fadeIn the new image you could use the following code:

&lt;code&gt;
beforeStart: function(a) {
            $(a).parent().fadeTo(400, 0);
            var bg = $(a).find(&#039;img&#039;).attr(&#039;src&#039;);
            $(&#039;.slider&#039;).css({backgroundImage: &quot;url(&quot;+bg+&quot;)&quot;}, 600);
         },
afterEnd: function(a) {
            $(a).parent().fadeTo(600, 1);
         }
&lt;/code&gt;

Granted some sliders have the above built in, but they aren;t all 2KB in size :)</description>
		<content:encoded><![CDATA[<p>Thanks for the comment. I have used this in the past with that exact slider (as it&#8217;s literally an extra 2KB of JavaScript). I found changing the trigger from hover to click worked well. </p>
<p>For your scrolling issue you could make use of the JCarouselLIte callbacks. They are fairly easy to deal with as they return a JavaScript object (have a look at the console if you enable logging). E.g. passing the letter &#8220;a&#8221; to the afterEnd function would give you a huge &#8220;a&#8221; object to work with. E.g. to slowly fadeOut the old image and fadeIn the new image you could use the following code:</p>
<p><code><br />
beforeStart: function(a) {<br />
            $(a).parent().fadeTo(400, 0);<br />
            var bg = $(a).find('img').attr('src');<br />
            $('.slider').css({backgroundImage: "url("+bg+")"}, 600);<br />
         },<br />
afterEnd: function(a) {<br />
            $(a).parent().fadeTo(600, 1);<br />
         }<br />
</code></p>
<p>Granted some sliders have the above built in, but they aren;t all 2KB in size <img src='http://www.web-design-talk.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Si</title>
		<link>http://www.web-design-talk.co.uk/200/jquery-hover-effect-image-gallery-for-ecommerce/comment-page-1/#comment-18786</link>
		<dc:creator>Si</dc:creator>
		<pubDate>Wed, 14 Dec 2011 13:48:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.web-design-talk.co.uk/?p=200#comment-18786</guid>
		<description>Hi Rob
Brillaint Tutorial! Learnt lots and it works brilliantly. I&#039;ve tried using this with JCarousel Lite however and have managed to mess it up. 

One intial load the hover script works fine but as soon as I start rotating the carousel, hover performance becomes patchy. I can hover over the image and though the cursor changes, the image doesn&#039;t react. Any ideas?</description>
		<content:encoded><![CDATA[<p>Hi Rob<br />
Brillaint Tutorial! Learnt lots and it works brilliantly. I&#8217;ve tried using this with JCarousel Lite however and have managed to mess it up. </p>
<p>One intial load the hover script works fine but as soon as I start rotating the carousel, hover performance becomes patchy. I can hover over the image and though the cursor changes, the image doesn&#8217;t react. Any ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JT</title>
		<link>http://www.web-design-talk.co.uk/200/jquery-hover-effect-image-gallery-for-ecommerce/comment-page-1/#comment-11552</link>
		<dc:creator>JT</dc:creator>
		<pubDate>Mon, 19 Sep 2011 10:36:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.web-design-talk.co.uk/?p=200#comment-11552</guid>
		<description>&lt;blockquote&gt;
&lt;a href=&quot;#comment-9583&quot; rel=&quot;nofollow&quot;&gt;
&lt;strong&gt;&lt;em&gt;Rob:&lt;/em&gt;&lt;/strong&gt;
&lt;/a&gt;
 Hi, 
For that you’d need to utilize the $(this) variable and gives each image roller over a class, as opposed to an id. Using the latter, you could easily use multiple image sets, with rollovers per page. If I get time, I’ll write a short blog post how to do this  
&lt;/blockquote&gt;

I&#039;d be interested in a tutorial on having multiples of this functionality on the same page too. I&#039;ll stay tuned.

Thanks for the above tutorial.</description>
		<content:encoded><![CDATA[<blockquote><p>
<a href="#comment-9583" rel="nofollow"><br />
<strong><em>Rob:</em></strong><br />
</a><br />
 Hi,<br />
For that you’d need to utilize the $(this) variable and gives each image roller over a class, as opposed to an id. Using the latter, you could easily use multiple image sets, with rollovers per page. If I get time, I’ll write a short blog post how to do this
</p></blockquote>
<p>I&#8217;d be interested in a tutorial on having multiples of this functionality on the same page too. I&#8217;ll stay tuned.</p>
<p>Thanks for the above tutorial.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Centos</title>
		<link>http://www.web-design-talk.co.uk/200/jquery-hover-effect-image-gallery-for-ecommerce/comment-page-1/#comment-9630</link>
		<dc:creator>Centos</dc:creator>
		<pubDate>Thu, 30 Jun 2011 03:50:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.web-design-talk.co.uk/?p=200#comment-9630</guid>
		<description>Thanks a lot Rob for your response. I will try it as you said but on the other hand i am also waiting for your short blog post :)</description>
		<content:encoded><![CDATA[<p>Thanks a lot Rob for your response. I will try it as you said but on the other hand i am also waiting for your short blog post <img src='http://www.web-design-talk.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob</title>
		<link>http://www.web-design-talk.co.uk/200/jquery-hover-effect-image-gallery-for-ecommerce/comment-page-1/#comment-9583</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Mon, 27 Jun 2011 17:47:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.web-design-talk.co.uk/?p=200#comment-9583</guid>
		<description>Hi, 

For that you&#039;d need to utilize the $(this) variable and gives each image roller over a class, as opposed to an id. Using the latter, you could easily use multiple image sets, with rollovers per page. If I get time, I&#039;ll write a short blog post how to do this :)</description>
		<content:encoded><![CDATA[<p>Hi, </p>
<p>For that you&#8217;d need to utilize the $(this) variable and gives each image roller over a class, as opposed to an id. Using the latter, you could easily use multiple image sets, with rollovers per page. If I get time, I&#8217;ll write a short blog post how to do this <img src='http://www.web-design-talk.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Centos</title>
		<link>http://www.web-design-talk.co.uk/200/jquery-hover-effect-image-gallery-for-ecommerce/comment-page-1/#comment-9570</link>
		<dc:creator>Centos</dc:creator>
		<pubDate>Mon, 27 Jun 2011 04:38:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.web-design-talk.co.uk/?p=200#comment-9570</guid>
		<description>Great job..the perfect one…but i do have a little problem. The thing i need is more than one product in the same page and hence when thumbnail hovered the respective image should be changed. Any help is much appreciated.Thanks in advance.</description>
		<content:encoded><![CDATA[<p>Great job..the perfect one…but i do have a little problem. The thing i need is more than one product in the same page and hence when thumbnail hovered the respective image should be changed. Any help is much appreciated.Thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bilder: Bildwechsel per Mouse-over - GIGA.DE - Community Forum</title>
		<link>http://www.web-design-talk.co.uk/200/jquery-hover-effect-image-gallery-for-ecommerce/comment-page-1/#comment-9016</link>
		<dc:creator>Bilder: Bildwechsel per Mouse-over - GIGA.DE - Community Forum</dc:creator>
		<pubDate>Tue, 24 May 2011 15:15:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.web-design-talk.co.uk/?p=200#comment-9016</guid>
		<description>[...] Re: Bilder: Bildwechsel per Mouse-over        JQuery Hover Effect Image Gallery For eCommerce - Fading Rollover Image Gallery &#124; Web Design &amp; D... [...]</description>
		<content:encoded><![CDATA[<p>[...] Re: Bilder: Bildwechsel per Mouse-over        JQuery Hover Effect Image Gallery For eCommerce &#8211; Fading Rollover Image Gallery | Web Design &amp; D&#8230; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob</title>
		<link>http://www.web-design-talk.co.uk/200/jquery-hover-effect-image-gallery-for-ecommerce/comment-page-1/#comment-8663</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Sun, 01 May 2011 17:33:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.web-design-talk.co.uk/?p=200#comment-8663</guid>
		<description>&lt;blockquote&gt;
&lt;a href=&quot;#comment-8603&quot; rel=&quot;nofollow&quot;&gt;
&lt;strong&gt;&lt;em&gt;christine aquino:&lt;/em&gt;&lt;/strong&gt;
&lt;/a&gt;
 &lt;p&gt;I have a question, is there a way where this entire code will work with a hotlink of images of urls? I want to hotlink different images from another website I own.&lt;/p&gt;
&lt;/blockquote&gt;

Hi, 

There&#039;s no reason that wouldn&#039;t work, you&#039;d just replace the image src&#039;s. The only issue you&#039;re likely to have is displaying the thumbnails, as you wouldn&#039;t want to resize them using HTML only. Ideally, you want to save the image to your website and resize it there - as I can&#039;t think of any image reszing scripts that allow remote image resizing. 

Alternatively, you could use CURL or file_get_contents to fetch each image, but this would slow you page downj a lot. However, you could write a cron job that downloads and resizes your image, meaning your page would only ever be displaying local, as opposed to remote images. If you want some examples in on twitter - @roballport.
 
Thanks</description>
		<content:encoded><![CDATA[<blockquote><p>
<a href="#comment-8603" rel="nofollow"><br />
<strong><em>christine aquino:</em></strong><br />
</a></p>
<p>I have a question, is there a way where this entire code will work with a hotlink of images of urls? I want to hotlink different images from another website I own.</p>
</blockquote>
<p>Hi, </p>
<p>There&#8217;s no reason that wouldn&#8217;t work, you&#8217;d just replace the image src&#8217;s. The only issue you&#8217;re likely to have is displaying the thumbnails, as you wouldn&#8217;t want to resize them using HTML only. Ideally, you want to save the image to your website and resize it there &#8211; as I can&#8217;t think of any image reszing scripts that allow remote image resizing. </p>
<p>Alternatively, you could use CURL or file_get_contents to fetch each image, but this would slow you page downj a lot. However, you could write a cron job that downloads and resizes your image, meaning your page would only ever be displaying local, as opposed to remote images. If you want some examples in on twitter &#8211; @roballport.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: christine aquino</title>
		<link>http://www.web-design-talk.co.uk/200/jquery-hover-effect-image-gallery-for-ecommerce/comment-page-1/#comment-8603</link>
		<dc:creator>christine aquino</dc:creator>
		<pubDate>Wed, 27 Apr 2011 23:47:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.web-design-talk.co.uk/?p=200#comment-8603</guid>
		<description>I have a question, is there a way where this entire code will work with a hotlink of images of urls? I want to hotlink different images from another website I own.</description>
		<content:encoded><![CDATA[<p>I have a question, is there a way where this entire code will work with a hotlink of images of urls? I want to hotlink different images from another website I own.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

