<?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: ImgZoom 0.1</title>
	<atom:link href="http://odyniec.net/blog/2009/08/imgzoom-0-1/feed/" rel="self" type="application/rss+xml" />
	<link>http://odyniec.net/blog/2009/08/imgzoom-0-1/</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Tue, 07 Sep 2010 17:40:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Michal Wojciechowski</title>
		<link>http://odyniec.net/blog/2009/08/imgzoom-0-1/comment-page-1/#comment-1676</link>
		<dc:creator>Michal Wojciechowski</dc:creator>
		<pubDate>Thu, 22 Oct 2009 23:12:03 +0000</pubDate>
		<guid isPermaLink="false">http://odyniec.net/blog/?p=346#comment-1676</guid>
		<description>@Ashish:
I&#039;ll think about adding the alternative mouseover behavior in the next version.

As for your second request, I imagine it could be implemented with a thumbnail image of the flash animation, i.e. you would actually zoom in the thumbnail to get the full-size image, then when the zoom-in animation completes, the flash object would be placed on top of the image. However, this requires the use of some callback functions that would be fired when the zoom animation finishes (like &lt;code&gt;onZoomIn&lt;/code&gt; and &lt;code&gt;onZoomOut&lt;/code&gt;), and these are not implemented yet (but they will surely be added in the next version).

By the way, sorry for the late response -- I&#039;ve had much too much real-life work in the last few days. Oh, the joys of running your own business...</description>
		<content:encoded><![CDATA[<p>@Ashish:<br />
I&#8217;ll think about adding the alternative mouseover behavior in the next version.</p>
<p>As for your second request, I imagine it could be implemented with a thumbnail image of the flash animation, i.e. you would actually zoom in the thumbnail to get the full-size image, then when the zoom-in animation completes, the flash object would be placed on top of the image. However, this requires the use of some callback functions that would be fired when the zoom animation finishes (like <code>onZoomIn</code> and <code>onZoomOut</code>), and these are not implemented yet (but they will surely be added in the next version).</p>
<p>By the way, sorry for the late response &#8212; I&#8217;ve had much too much real-life work in the last few days. Oh, the joys of running your own business&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ashish</title>
		<link>http://odyniec.net/blog/2009/08/imgzoom-0-1/comment-page-1/#comment-1526</link>
		<dc:creator>Ashish</dc:creator>
		<pubDate>Fri, 09 Oct 2009 12:13:53 +0000</pubDate>
		<guid isPermaLink="false">http://odyniec.net/blog/?p=346#comment-1526</guid>
		<description>Michal,

For now I am using the script as is i.e. on click, as I discovered that it is difficult for my knowledge level to work with API calls. Could you provide the &quot;on-mouseover&quot; version in the solution just the way you have provided for &quot;on-click&quot; version? It will be of great help.

Also, could you develop a version wherein a thumbnail image on click opens a DIV with the same effect (instead of openeing a larger image on click of the samller thum?)? (For my requirement), the DIV could contain a flash which starts playing in full size on click of the smaller thumnail image.

Awaiting your response!</description>
		<content:encoded><![CDATA[<p>Michal,</p>
<p>For now I am using the script as is i.e. on click, as I discovered that it is difficult for my knowledge level to work with API calls. Could you provide the &#8220;on-mouseover&#8221; version in the solution just the way you have provided for &#8220;on-click&#8221; version? It will be of great help.</p>
<p>Also, could you develop a version wherein a thumbnail image on click opens a DIV with the same effect (instead of openeing a larger image on click of the samller thum?)? (For my requirement), the DIV could contain a flash which starts playing in full size on click of the smaller thumnail image.</p>
<p>Awaiting your response!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ashish</title>
		<link>http://odyniec.net/blog/2009/08/imgzoom-0-1/comment-page-1/#comment-1413</link>
		<dc:creator>Ashish</dc:creator>
		<pubDate>Fri, 25 Sep 2009 08:01:45 +0000</pubDate>
		<guid isPermaLink="false">http://odyniec.net/blog/?p=346#comment-1413</guid>
		<description>That&#039;s great, Michal!
Thanks you for the great response to both of my questions!! 
Now I am doubly happy!!</description>
		<content:encoded><![CDATA[<p>That&#8217;s great, Michal!<br />
Thanks you for the great response to both of my questions!!<br />
Now I am doubly happy!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michal Wojciechowski</title>
		<link>http://odyniec.net/blog/2009/08/imgzoom-0-1/comment-page-1/#comment-1347</link>
		<dc:creator>Michal Wojciechowski</dc:creator>
		<pubDate>Tue, 22 Sep 2009 10:23:24 +0000</pubDate>
		<guid isPermaLink="false">http://odyniec.net/blog/?p=346#comment-1347</guid>
		<description>@Ashish:
As for 1, it is possible using some API calls:
&lt;code&gt;&lt;pre&gt;$(&#039;img&#039;).hover(
    function () {
        if (!$.imgZoom.animating)
            $(this).imgZoom({ instance: true }).zoomIn();
    },
    function () {
        if (!$.imgZoom.animating)
            $(this).imgZoom({ instance: true }).zoomOut();
    });&lt;/pre&gt;&lt;/code&gt;
I need to update the documentation to include these API calls.

For 2, the short answer is &quot;yes&quot; :-) You can use the plugin in a commercial website, and you don&#039;t have to pay anything.</description>
		<content:encoded><![CDATA[<p>@Ashish:<br />
As for 1, it is possible using some API calls:<br />
<code>
<pre>$('img').hover(
    function () {
        if (!$.imgZoom.animating)
            $(this).imgZoom({ instance: true }).zoomIn();
    },
    function () {
        if (!$.imgZoom.animating)
            $(this).imgZoom({ instance: true }).zoomOut();
    });</pre>
<p></code><br />
I need to update the documentation to include these API calls.</p>
<p>For 2, the short answer is &#8220;yes&#8221; <img src='http://odyniec.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  You can use the plugin in a commercial website, and you don&#8217;t have to pay anything.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ashish</title>
		<link>http://odyniec.net/blog/2009/08/imgzoom-0-1/comment-page-1/#comment-1335</link>
		<dc:creator>Ashish</dc:creator>
		<pubDate>Mon, 21 Sep 2009 13:03:01 +0000</pubDate>
		<guid isPermaLink="false">http://odyniec.net/blog/?p=346#comment-1335</guid>
		<description>hello Michal!
I find the zoom effects really outstanding! Great Work.
1. Wish to know if the effects can be achieved using mouseover instead of the click. If yes, could you tell me how?
2. May I use your plugin on my site/s commercial in nature? If yes, do I have to pay? I tried reading into the license but could never find a simple &#039;yes&#039; or &#039;no&#039; for an answer to my question.</description>
		<content:encoded><![CDATA[<p>hello Michal!<br />
I find the zoom effects really outstanding! Great Work.<br />
1. Wish to know if the effects can be achieved using mouseover instead of the click. If yes, could you tell me how?<br />
2. May I use your plugin on my site/s commercial in nature? If yes, do I have to pay? I tried reading into the license but could never find a simple &#8216;yes&#8217; or &#8216;no&#8217; for an answer to my question.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michal Wojciechowski</title>
		<link>http://odyniec.net/blog/2009/08/imgzoom-0-1/comment-page-1/#comment-1253</link>
		<dc:creator>Michal Wojciechowski</dc:creator>
		<pubDate>Tue, 15 Sep 2009 10:38:40 +0000</pubDate>
		<guid isPermaLink="false">http://odyniec.net/blog/?p=346#comment-1253</guid>
		<description>@Ian: This will surely be added in the next version, along with a number of other features. I just need some more spare time to work on it.</description>
		<content:encoded><![CDATA[<p>@Ian: This will surely be added in the next version, along with a number of other features. I just need some more spare time to work on it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ian</title>
		<link>http://odyniec.net/blog/2009/08/imgzoom-0-1/comment-page-1/#comment-1247</link>
		<dc:creator>Ian</dc:creator>
		<pubDate>Mon, 14 Sep 2009 23:26:02 +0000</pubDate>
		<guid isPermaLink="false">http://odyniec.net/blog/?p=346#comment-1247</guid>
		<description>Very nice, smooth plugin - I just wish there was a way to add a caption to the image. (like fancyzoom)</description>
		<content:encoded><![CDATA[<p>Very nice, smooth plugin &#8211; I just wish there was a way to add a caption to the image. (like fancyzoom)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
