<?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: Amazing Image Hover Effects with Webkit and CSS 3</title>
	<atom:link href="http://dinolatoga.com/2009/09/18/amazing-imag-hover-effects-with-webkit-and-css/feed/" rel="self" type="application/rss+xml" />
	<link>http://dinolatoga.com/2009/09/18/amazing-imag-hover-effects-with-webkit-and-css/</link>
	<description>Web Designer and Blogger</description>
	<lastBuildDate>Fri, 11 May 2012 13:13:46 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: dayFive: TwL CSS3 Hover States &#171; SY Blog</title>
		<link>http://dinolatoga.com/2009/09/18/amazing-imag-hover-effects-with-webkit-and-css/#comment-3795</link>
		<dc:creator>dayFive: TwL CSS3 Hover States &#171; SY Blog</dc:creator>
		<pubDate>Fri, 11 May 2012 13:13:46 +0000</pubDate>
		<guid isPermaLink="false">http://dinolatoga.com/?p=229#comment-3795</guid>
		<description>[...] today I&#8217;ll be stealing content from http://dinolatoga.com/2009/09/18/amazing-imag-hover-effects-with-webkit-and-css/. who provide a relatively useful guide about the CSS [...]</description>
		<content:encoded><![CDATA[<p>[...] today I&#8217;ll be stealing content from http://dinolatoga.com/2009/09/18/amazing-imag-hover-effects-with-webkit-and-css/. who provide a relatively useful guide about the CSS [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: maketrax</title>
		<link>http://dinolatoga.com/2009/09/18/amazing-imag-hover-effects-with-webkit-and-css/#comment-3793</link>
		<dc:creator>maketrax</dc:creator>
		<pubDate>Mon, 07 May 2012 20:45:36 +0000</pubDate>
		<guid isPermaLink="false">http://dinolatoga.com/?p=229#comment-3793</guid>
		<description>oops - my example above doesn&#039;t show the markup (it was interpreted by the comment tool) - here it is with square brackets replacing the open/close carets:

[div id=&quot;demo-3&quot; class=&quot;demobox&quot;]image here[/div]

[div class=&quot;details&quot;]text here[/div]</description>
		<content:encoded><![CDATA[<p>oops &#8211; my example above doesn&#8217;t show the markup (it was interpreted by the comment tool) &#8211; here it is with square brackets replacing the open/close carets:</p>
<p>[div id="demo-3" class="demobox"]image here[/div]</p>
<p>[div class="details"]text here[/div]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: maketrax</title>
		<link>http://dinolatoga.com/2009/09/18/amazing-imag-hover-effects-with-webkit-and-css/#comment-3792</link>
		<dc:creator>maketrax</dc:creator>
		<pubDate>Mon, 07 May 2012 20:42:20 +0000</pubDate>
		<guid isPermaLink="false">http://dinolatoga.com/?p=229#comment-3792</guid>
		<description>Actually - demo examples 2 thru 5 are missing the class assignments for the divs - they won&#039;t work by just copying to your environment. for example, in example 3:

image here

and 

text here</description>
		<content:encoded><![CDATA[<p>Actually &#8211; demo examples 2 thru 5 are missing the class assignments for the divs &#8211; they won&#8217;t work by just copying to your environment. for example, in example 3:</p>
<p>image here</p>
<p>and </p>
<p>text here</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: beau dietl</title>
		<link>http://dinolatoga.com/2009/09/18/amazing-imag-hover-effects-with-webkit-and-css/#comment-3790</link>
		<dc:creator>beau dietl</dc:creator>
		<pubDate>Wed, 02 May 2012 20:37:23 +0000</pubDate>
		<guid isPermaLink="false">http://dinolatoga.com/?p=229#comment-3790</guid>
		<description>&lt;a href=&quot;http://www.squidoo.com/bo-dietl&quot; title=&quot; beau dietl&quot; rel=&quot;nofollow&quot;&gt; beau dietl&lt;/a&gt;  said something simliar a few weeks ago.  I was watching a news report on t.v. that made the same points as the article above.</description>
		<content:encoded><![CDATA[<p><a href="http://www.squidoo.com/bo-dietl" title=" beau dietl" rel="nofollow"> beau dietl</a>  said something simliar a few weeks ago.  I was watching a news report on t.v. that made the same points as the article above.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Srdjan</title>
		<link>http://dinolatoga.com/2009/09/18/amazing-imag-hover-effects-with-webkit-and-css/#comment-3786</link>
		<dc:creator>Srdjan</dc:creator>
		<pubDate>Thu, 26 Apr 2012 15:49:53 +0000</pubDate>
		<guid isPermaLink="false">http://dinolatoga.com/?p=229#comment-3786</guid>
		<description>Hi,

I tried to put this into Joomla article, but it doesn&#039;t work.
I put this into article:


  #demo-3{position:relative;}
  #demo-3 img{
    opacity:1
      -webkit-transition: opacity;
    -webkit-transition-timing-function: ease-out;
    -webkit-transition-duration: 500ms;
  }
  #demo-3 .details{
    position:absolute;
    top:0;
    left:0;
    opacity: 0;
    -webkit-transition: opacity;
    -webkit-transition-timing-function: ease-out;
    -webkit-transition-duration: 500ms;
  }
  
  #demo-3 .details:hover{
    opacity: .9;
    -webkit-transition: opacity;
    -webkit-transition-timing-function: ease-out;
    -webkit-transition-duration: 500ms;
  }
  



  
  
    Transformers
    More than meets the eye
  


Can you please tell me where is the mistake?</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I tried to put this into Joomla article, but it doesn&#8217;t work.<br />
I put this into article:</p>
<p>  #demo-3{position:relative;}<br />
  #demo-3 img{<br />
    opacity:1<br />
      -webkit-transition: opacity;<br />
    -webkit-transition-timing-function: ease-out;<br />
    -webkit-transition-duration: 500ms;<br />
  }<br />
  #demo-3 .details{<br />
    position:absolute;<br />
    top:0;<br />
    left:0;<br />
    opacity: 0;<br />
    -webkit-transition: opacity;<br />
    -webkit-transition-timing-function: ease-out;<br />
    -webkit-transition-duration: 500ms;<br />
  }</p>
<p>  #demo-3 .details:hover{<br />
    opacity: .9;<br />
    -webkit-transition: opacity;<br />
    -webkit-transition-timing-function: ease-out;<br />
    -webkit-transition-duration: 500ms;<br />
  }</p>
<p>    Transformers<br />
    More than meets the eye</p>
<p>Can you please tell me where is the mistake?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: easy claims process</title>
		<link>http://dinolatoga.com/2009/09/18/amazing-imag-hover-effects-with-webkit-and-css/#comment-3783</link>
		<dc:creator>easy claims process</dc:creator>
		<pubDate>Thu, 19 Apr 2012 14:33:24 +0000</pubDate>
		<guid isPermaLink="false">http://dinolatoga.com/?p=229#comment-3783</guid>
		<description>&quot;kqbL6_MuC0dzc-1328657650387 Thanks for that awesome posting. It saved MUCH time :-)</description>
		<content:encoded><![CDATA[<p>&#8220;kqbL6_MuC0dzc-1328657650387 Thanks for that awesome posting. It saved MUCH time :-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rex</title>
		<link>http://dinolatoga.com/2009/09/18/amazing-imag-hover-effects-with-webkit-and-css/#comment-3782</link>
		<dc:creator>Rex</dc:creator>
		<pubDate>Wed, 18 Apr 2012 17:30:56 +0000</pubDate>
		<guid isPermaLink="false">http://dinolatoga.com/?p=229#comment-3782</guid>
		<description>This helped me and using it I made a simple snippet to show the author info using the CSS3 hover effects
http://webstutorial.com/css3-image-hover-effects/css3</description>
		<content:encoded><![CDATA[<p>This helped me and using it I made a simple snippet to show the author info using the CSS3 hover effects<br />
<a href="http://webstutorial.com/css3-image-hover-effects/css3" rel="nofollow">http://webstutorial.com/css3-image-hover-effects/css3</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: r4</title>
		<link>http://dinolatoga.com/2009/09/18/amazing-imag-hover-effects-with-webkit-and-css/#comment-3780</link>
		<dc:creator>r4</dc:creator>
		<pubDate>Thu, 12 Apr 2012 08:53:02 +0000</pubDate>
		<guid isPermaLink="false">http://dinolatoga.com/?p=229#comment-3780</guid>
		<description>nice post , learnt much from you  thanks</description>
		<content:encoded><![CDATA[<p>nice post , learnt much from you  thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 7个使用jQuery及其CSS实现的悬浮特效 &#124; 莲娜用户体验研究日志 Lyna UED</title>
		<link>http://dinolatoga.com/2009/09/18/amazing-imag-hover-effects-with-webkit-and-css/#comment-3777</link>
		<dc:creator>7个使用jQuery及其CSS实现的悬浮特效 &#124; 莲娜用户体验研究日志 Lyna UED</dc:creator>
		<pubDate>Sat, 24 Mar 2012 09:48:17 +0000</pubDate>
		<guid isPermaLink="false">http://dinolatoga.com/?p=229#comment-3777</guid>
		<description>[...] Amazing Image Hover Effects with Webkit and CSS 3 [...]</description>
		<content:encoded><![CDATA[<p>[...] Amazing Image Hover Effects with Webkit and CSS 3 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: circleb</title>
		<link>http://dinolatoga.com/2009/09/18/amazing-imag-hover-effects-with-webkit-and-css/#comment-3776</link>
		<dc:creator>circleb</dc:creator>
		<pubDate>Thu, 22 Mar 2012 14:01:34 +0000</pubDate>
		<guid isPermaLink="false">http://dinolatoga.com/?p=229#comment-3776</guid>
		<description>If you use these CSS rules it will work in nearly all browsers...

	-webkit-transition: all 250ms ease-in;
	-moz-transition: all 250ms ease-in;
	-ms-transition: all 250ms ease-in;
	-o-transition: all 250ms ease-in;
	transition: all 250ms ease-in;</description>
		<content:encoded><![CDATA[<p>If you use these CSS rules it will work in nearly all browsers&#8230;</p>
<p>	-webkit-transition: all 250ms ease-in;<br />
	-moz-transition: all 250ms ease-in;<br />
	-ms-transition: all 250ms ease-in;<br />
	-o-transition: all 250ms ease-in;<br />
	transition: all 250ms ease-in;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic page generated in 1.577 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-05-17 12:22:28 -->
<!-- Compression = gzip -->
