<?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: New jQuery Plugin &#8211; ImageSwitch, amazing effect with simple code</title>
	<atom:link href="http://www.hieu.co.uk/blog/index.php/2009/03/13/new-jquery-plugin-imageswitch-amazing-effect-with-simple-code/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.hieu.co.uk/blog/index.php/2009/03/13/new-jquery-plugin-imageswitch-amazing-effect-with-simple-code/</link>
	<description>Creative Programing</description>
	<lastBuildDate>Tue, 07 Feb 2012 08:06:15 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Muhammad Ali Shan</title>
		<link>http://www.hieu.co.uk/blog/index.php/2009/03/13/new-jquery-plugin-imageswitch-amazing-effect-with-simple-code/comment-page-2/#comment-17214</link>
		<dc:creator>Muhammad Ali Shan</dc:creator>
		<pubDate>Thu, 07 Jul 2011 16:07:09 +0000</pubDate>
		<guid isPermaLink="false">/post/2009/03/13/New-jQuery-Plugin-ImageSwitch-amazing-effect-with-simple-code.aspx#comment-17214</guid>
		<description>Really stuck on my way to implement revealing previous image using FLIPIN effect.

I am using FlipOut to move to a NEXT image and want to use FlipIn to move back to PREVIOUS image.

Can anyone help?

Kind Regards</description>
		<content:encoded><![CDATA[<p>Really stuck on my way to implement revealing previous image using FLIPIN effect.</p>
<p>I am using FlipOut to move to a NEXT image and want to use FlipIn to move back to PREVIOUS image.</p>
<p>Can anyone help?</p>
<p>Kind Regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeroen</title>
		<link>http://www.hieu.co.uk/blog/index.php/2009/03/13/new-jquery-plugin-imageswitch-amazing-effect-with-simple-code/comment-page-2/#comment-15886</link>
		<dc:creator>Jeroen</dc:creator>
		<pubDate>Wed, 15 Jun 2011 11:54:41 +0000</pubDate>
		<guid isPermaLink="false">/post/2009/03/13/New-jQuery-Plugin-ImageSwitch-amazing-effect-with-simple-code.aspx#comment-15886</guid>
		<description>Hello, does any one know how to get rid of the black edges around PNG files I had read that you need to put the effect on a div. But the effect takes place in javascript and only uses one div &quot;splashframe&quot;.
Does any one know how to make this example whitout the black edges in internet Explorer 7, en 8? Lets say whit pngiefix or something like that?
Thanks for any help.


*{
	padding: 0;
	margin: 0;
	font-family: verdana, arial;
	font-size: 12px;
}

h3{
	font-size: 1.3em;
	margin: 10px;
}

p{
	margin: 10px;
}

a{
	text-decoration: none;
	text-color: #007BEC;
}

a:hover{
	text-decoration: underline;
}

a img{
	border: none;
	margin: 0 10px 0 0;
}

body{
	background: #FFF;
	padding: 50px;
}

/* Example style */
.SplashFrame{
	width: 497px;
	height: 236px;
	margin: 0 auto;
	padding: 27px 0 0 36px;
}

.SlashEff{
	background: url(Images/tryitnow.jpg) no-repeat 0 0;
	width: 550px;
	height:62px;
	margin: 20px auto 0;
	padding: 5px 0 0 60px;
}

.SlashEff ul li{
	float: left;
	list-style-image: none;
	list-style-type: none;	
	width: 100px;
	cursor: pointer;
}

.SlashEff ul li:hover{
	text-decoration: underline;
}




	var ImgIdx = 2;	
	function PreloadImg(){
		$.ImagePreload(&quot;images/slash1.png&quot;);
		$.ImagePreload(&quot;images/slash2.png&quot;);
		$.ImagePreload(&quot;images/slash3.png&quot;);
		$.ImagePreload(&quot;images/slash4.png&quot;);
	}
	$(document).ready(function(){
		PreloadImg();		
		$(&quot;.SlashEff ul li&quot;).click(function(){
			$(&quot;.Slash&quot;).ImageSwitch({Type:$(this).attr(&quot;rel&quot;), 						NewImage:&quot;images/slash&quot;+ImgIdx+&quot;.png&quot;, speed: 4000							});
	   ImgIdx++;
	   if(ImgIdx&gt;4) ImgIdx = 1;
	   });		
	});



	
	TRY EFFECTS
	
	
					
		
							Fade in
	Fade in
	Fade in
	Fade in
					
		
		
</description>
		<content:encoded><![CDATA[<p>Hello, does any one know how to get rid of the black edges around PNG files I had read that you need to put the effect on a div. But the effect takes place in javascript and only uses one div &#8220;splashframe&#8221;.<br />
Does any one know how to make this example whitout the black edges in internet Explorer 7, en 8? Lets say whit pngiefix or something like that?<br />
Thanks for any help.</p>
<p>*{<br />
	padding: 0;<br />
	margin: 0;<br />
	font-family: verdana, arial;<br />
	font-size: 12px;<br />
}</p>
<p>h3{<br />
	font-size: 1.3em;<br />
	margin: 10px;<br />
}</p>
<p>p{<br />
	margin: 10px;<br />
}</p>
<p>a{<br />
	text-decoration: none;<br />
	text-color: #007BEC;<br />
}</p>
<p>a:hover{<br />
	text-decoration: underline;<br />
}</p>
<p>a img{<br />
	border: none;<br />
	margin: 0 10px 0 0;<br />
}</p>
<p>body{<br />
	background: #FFF;<br />
	padding: 50px;<br />
}</p>
<p>/* Example style */<br />
.SplashFrame{<br />
	width: 497px;<br />
	height: 236px;<br />
	margin: 0 auto;<br />
	padding: 27px 0 0 36px;<br />
}</p>
<p>.SlashEff{<br />
	background: url(Images/tryitnow.jpg) no-repeat 0 0;<br />
	width: 550px;<br />
	height:62px;<br />
	margin: 20px auto 0;<br />
	padding: 5px 0 0 60px;<br />
}</p>
<p>.SlashEff ul li{<br />
	float: left;<br />
	list-style-image: none;<br />
	list-style-type: none;<br />
	width: 100px;<br />
	cursor: pointer;<br />
}</p>
<p>.SlashEff ul li:hover{<br />
	text-decoration: underline;<br />
}</p>
<p>	var ImgIdx = 2;<br />
	function PreloadImg(){<br />
		$.ImagePreload(&#8220;images/slash1.png&#8221;);<br />
		$.ImagePreload(&#8220;images/slash2.png&#8221;);<br />
		$.ImagePreload(&#8220;images/slash3.png&#8221;);<br />
		$.ImagePreload(&#8220;images/slash4.png&#8221;);<br />
	}<br />
	$(document).ready(function(){<br />
		PreloadImg();<br />
		$(&#8220;.SlashEff ul li&#8221;).click(function(){<br />
			$(&#8220;.Slash&#8221;).ImageSwitch({Type:$(this).attr(&#8220;rel&#8221;), 						NewImage:&#8221;images/slash&#8221;+ImgIdx+&#8221;.png&#8221;, speed: 4000							});<br />
	   ImgIdx++;<br />
	   if(ImgIdx&gt;4) ImgIdx = 1;<br />
	   });<br />
	});</p>
<p>	TRY EFFECTS</p>
<p>							Fade in<br />
	Fade in<br />
	Fade in<br />
	Fade in</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: oakley sunglasses cheap</title>
		<link>http://www.hieu.co.uk/blog/index.php/2009/03/13/new-jquery-plugin-imageswitch-amazing-effect-with-simple-code/comment-page-2/#comment-13421</link>
		<dc:creator>oakley sunglasses cheap</dc:creator>
		<pubDate>Mon, 25 Apr 2011 13:39:55 +0000</pubDate>
		<guid isPermaLink="false">/post/2009/03/13/New-jQuery-Plugin-ImageSwitch-amazing-effect-with-simple-code.aspx#comment-13421</guid>
		<description>When the movie &quot;sex and the city 2&quot; trailer global distribution, appear even in CCTV news channel, the audience is very friendly to expect to this film clothing modelling division Patricia Field.</description>
		<content:encoded><![CDATA[<p>When the movie &#8220;sex and the city 2&#8243; trailer global distribution, appear even in CCTV news channel, the audience is very friendly to expect to this film clothing modelling division Patricia Field.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cheap juicy handbags</title>
		<link>http://www.hieu.co.uk/blog/index.php/2009/03/13/new-jquery-plugin-imageswitch-amazing-effect-with-simple-code/comment-page-2/#comment-12920</link>
		<dc:creator>cheap juicy handbags</dc:creator>
		<pubDate>Tue, 12 Apr 2011 07:13:28 +0000</pubDate>
		<guid isPermaLink="false">/post/2009/03/13/New-jQuery-Plugin-ImageSwitch-amazing-effect-with-simple-code.aspx#comment-12920</guid>
		<description>couples have is a priority, small recommend three kinds of color han2 ban3 wedges sandals, whether very cute?</description>
		<content:encoded><![CDATA[<p>couples have is a priority, small recommend three kinds of color han2 ban3 wedges sandals, whether very cute?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: HieuUK</title>
		<link>http://www.hieu.co.uk/blog/index.php/2009/03/13/new-jquery-plugin-imageswitch-amazing-effect-with-simple-code/comment-page-2/#comment-1578</link>
		<dc:creator>HieuUK</dc:creator>
		<pubDate>Sun, 11 Oct 2009 20:54:30 +0000</pubDate>
		<guid isPermaLink="false">/post/2009/03/13/New-jQuery-Plugin-ImageSwitch-amazing-effect-with-simple-code.aspx#comment-1578</guid>
		<description>Thank Toan :).
Yes I&#039;m Vietnamese however I&#039;m currently working in UK :)</description>
		<content:encoded><![CDATA[<p>Thank Toan <img src='http://www.hieu.co.uk/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .<br />
Yes I&#8217;m Vietnamese however I&#8217;m currently working in UK <img src='http://www.hieu.co.uk/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Toan</title>
		<link>http://www.hieu.co.uk/blog/index.php/2009/03/13/new-jquery-plugin-imageswitch-amazing-effect-with-simple-code/comment-page-2/#comment-1574</link>
		<dc:creator>Toan</dc:creator>
		<pubDate>Sun, 11 Oct 2009 11:55:37 +0000</pubDate>
		<guid isPermaLink="false">/post/2009/03/13/New-jQuery-Plugin-ImageSwitch-amazing-effect-with-simple-code.aspx#comment-1574</guid>
		<description>Awesome article!
Are you Vietnamese, Hieu?
Nice to meet .</description>
		<content:encoded><![CDATA[<p>Awesome article!<br />
Are you Vietnamese, Hieu?<br />
Nice to meet .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ITキヲスク &#124; 2009年4/20～4/26の週間ブックマーク</title>
		<link>http://www.hieu.co.uk/blog/index.php/2009/03/13/new-jquery-plugin-imageswitch-amazing-effect-with-simple-code/comment-page-1/#comment-1417</link>
		<dc:creator>ITキヲスク &#124; 2009年4/20～4/26の週間ブックマーク</dc:creator>
		<pubDate>Sun, 06 Sep 2009 15:53:07 +0000</pubDate>
		<guid isPermaLink="false">/post/2009/03/13/New-jQuery-Plugin-ImageSwitch-amazing-effect-with-simple-code.aspx#comment-1417</guid>
		<description>[...] 画像に様々なエフェクトを</description>
		<content:encoded><![CDATA[<p>[...] 画像に様々なエフェクトを</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: HieuUK</title>
		<link>http://www.hieu.co.uk/blog/index.php/2009/03/13/new-jquery-plugin-imageswitch-amazing-effect-with-simple-code/comment-page-1/#comment-544</link>
		<dc:creator>HieuUK</dc:creator>
		<pubDate>Tue, 09 Jun 2009 22:22:12 +0000</pubDate>
		<guid isPermaLink="false">/post/2009/03/13/New-jQuery-Plugin-ImageSwitch-amazing-effect-with-simple-code.aspx#comment-544</guid>
		<description>Hi,
This link contain the guide of how to make the script loop automatically, hope it will help :)
http://www.hieu.co.uk/blog/index.php/2009/03/21/8-guides-to-apply-jquery-and-imageswitch-in-web-design/</description>
		<content:encoded><![CDATA[<p>Hi,<br />
This link contain the guide of how to make the script loop automatically, hope it will help <img src='http://www.hieu.co.uk/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<a  href="http://www.hieu.co.uk/blog/index.php/2009/03/21/8-guides-to-apply-jquery-and-imageswitch-in-web-design/" rel="nofollow">http://www.hieu.co.uk/blog/index.php/2009/03/21/8-guides-to-apply-jquery-and-imageswitch-in-web-design/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aj</title>
		<link>http://www.hieu.co.uk/blog/index.php/2009/03/13/new-jquery-plugin-imageswitch-amazing-effect-with-simple-code/comment-page-1/#comment-540</link>
		<dc:creator>aj</dc:creator>
		<pubDate>Mon, 08 Jun 2009 01:59:27 +0000</pubDate>
		<guid isPermaLink="false">/post/2009/03/13/New-jQuery-Plugin-ImageSwitch-amazing-effect-with-simple-code.aspx#comment-540</guid>
		<description>thanks for the great effect,

I&#039;d love to use just the fade effect to cycle through a couple of photos, how could you set this up to auto cycle through every 3 seconds?

Thanks</description>
		<content:encoded><![CDATA[<p>thanks for the great effect,</p>
<p>I&#8217;d love to use just the fade effect to cycle through a couple of photos, how could you set this up to auto cycle through every 3 seconds?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://www.hieu.co.uk/blog/index.php/2009/03/13/new-jquery-plugin-imageswitch-amazing-effect-with-simple-code/comment-page-1/#comment-167</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Tue, 07 Apr 2009 08:58:50 +0000</pubDate>
		<guid isPermaLink="false">/post/2009/03/13/New-jQuery-Plugin-ImageSwitch-amazing-effect-with-simple-code.aspx#comment-167</guid>
		<description>@Evan: I think I know the problem, the first image fade, and new image stay on top of it -&gt; JS thought you mouse move out of the image already...
If you check this article, I wrote about apply IS in web dev, check the RSS fade in effect, it could explain how to make it work in this situation:
&lt;a href=&quot;http://www.hieu.co.uk/blog/index.php/2009/03/21/8-guides-to-apply-jquery-and-imageswitch-in-web-design/&quot; rel=&quot;nofollow&quot;&gt;8 Guides to apply jquery and Imageswitch in web design&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>@Evan: I think I know the problem, the first image fade, and new image stay on top of it -&gt; JS thought you mouse move out of the image already&#8230;<br />
If you check this article, I wrote about apply IS in web dev, check the RSS fade in effect, it could explain how to make it work in this situation:<br />
<a  href="http://www.hieu.co.uk/blog/index.php/2009/03/21/8-guides-to-apply-jquery-and-imageswitch-in-web-design/" rel="nofollow">8 Guides to apply jquery and Imageswitch in web design</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

