<?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: CSS Opacity &#8211; 5 Faces of Transparency	</title>
	<atom:link href="https://www.shibashake.com/wp/css-opacity-5-faces-of-transparency/feed" rel="self" type="application/rss+xml" />
	<link>https://shibashake.com/wp/css-opacity-5-faces-of-transparency</link>
	<description>Adventures in WordPress</description>
	<lastBuildDate>Tue, 04 Jan 2022 09:47:30 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.9</generator>
	<item>
		<title>
		By: ShibaShake		</title>
		<link>https://shibashake.com/wp/css-opacity-5-faces-of-transparency/comment-page-1#comment-51180</link>

		<dc:creator><![CDATA[ShibaShake]]></dc:creator>
		<pubDate>Sat, 26 Jan 2013 18:26:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.shibashake.com/wordpress-theme/?p=1082#comment-51180</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://shibashake.com/wp/css-opacity-5-faces-of-transparency/comment-page-1#comment-50977&quot;&gt;Eric&lt;/a&gt;.

Not sure - not something that I have looked for.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://shibashake.com/wp/css-opacity-5-faces-of-transparency/comment-page-1#comment-50977">Eric</a>.</p>
<p>Not sure &#8211; not something that I have looked for.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Eric		</title>
		<link>https://shibashake.com/wp/css-opacity-5-faces-of-transparency/comment-page-1#comment-50977</link>

		<dc:creator><![CDATA[Eric]]></dc:creator>
		<pubDate>Thu, 24 Jan 2013 21:20:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.shibashake.com/wordpress-theme/?p=1082#comment-50977</guid>

					<description><![CDATA[is there a plugin that does this?]]></description>
			<content:encoded><![CDATA[<p>is there a plugin that does this?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: CSS Opacity – 5 Faces of Transparency&#160;&#124;&#160;My Blog		</title>
		<link>https://shibashake.com/wp/css-opacity-5-faces-of-transparency/comment-page-1#comment-1623</link>

		<dc:creator><![CDATA[CSS Opacity – 5 Faces of Transparency&#160;&#124;&#160;My Blog]]></dc:creator>
		<pubDate>Thu, 10 Jun 2010 22:16:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.shibashake.com/wordpress-theme/?p=1082#comment-1623</guid>

					<description><![CDATA[[...] reading here: CSS Opacity – 5 Faces of Transparency    This entry was posted on Tuesday, October 27th, 2009 at 9:55 pm and is filed under [...]]]></description>
			<content:encoded><![CDATA[<p>[&#8230;] reading here: CSS Opacity – 5 Faces of Transparency    This entry was posted on Tuesday, October 27th, 2009 at 9:55 pm and is filed under [&#8230;]</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Benxamin		</title>
		<link>https://shibashake.com/wp/css-opacity-5-faces-of-transparency/comment-page-1#comment-836</link>

		<dc:creator><![CDATA[Benxamin]]></dc:creator>
		<pubDate>Mon, 14 Dec 2009 04:22:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.shibashake.com/wordpress-theme/?p=1082#comment-836</guid>

					<description><![CDATA[Thankfully, they have such a thing as modernizer.js and eCSStender.js that solve CSS3 compatibility problems.]]></description>
			<content:encoded><![CDATA[<p>Thankfully, they have such a thing as modernizer.js and eCSStender.js that solve CSS3 compatibility problems.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: ShibaShake		</title>
		<link>https://shibashake.com/wp/css-opacity-5-faces-of-transparency/comment-page-1#comment-436</link>

		<dc:creator><![CDATA[ShibaShake]]></dc:creator>
		<pubDate>Thu, 05 Nov 2009 16:48:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.shibashake.com/wordpress-theme/?p=1082#comment-436</guid>

					<description><![CDATA[Hello Aakash,

Opacity only works for FireFox and other browsers that are CSS compliant. Sadly it does not work for IE.

IE has its own opacity command -
&lt;pre&gt;filter:alpha(opacity=50);&lt;/pre&gt;

Just add those into your CSS definitions. Also your hover should look like this - 

&lt;pre lang=&quot;HTML&quot;&gt;
.image:hover
{
    opacity:1.0;
    filter:alpha(opacity=100);
}
&lt;/pre&gt;

However, using opacity may get you aliasing issues with IE. I highly recommend using transparent PNGs as is shown in step 5 above. It&#039;s only weakness is that IE-6 does not support repeating transparent PNGs so it will not work there, but it works very well on IE-7 and IE-8.

As a side note - hover only works on links in IE-6 so you will need to use - 
&lt;pre&gt;a:hover .image { blah }&lt;/pre&gt;]]></description>
			<content:encoded><![CDATA[<p>Hello Aakash,</p>
<p>Opacity only works for FireFox and other browsers that are CSS compliant. Sadly it does not work for IE.</p>
<p>IE has its own opacity command &#8211;</p>
<pre>filter:alpha(opacity=50);</pre>
<p>Just add those into your CSS definitions. Also your hover should look like this &#8211; </p>
<pre lang="HTML">
.image:hover
{
    opacity:1.0;
    filter:alpha(opacity=100);
}
</pre>
<p>However, using opacity may get you aliasing issues with IE. I highly recommend using transparent PNGs as is shown in step 5 above. It&#8217;s only weakness is that IE-6 does not support repeating transparent PNGs so it will not work there, but it works very well on IE-7 and IE-8.</p>
<p>As a side note &#8211; hover only works on links in IE-6 so you will need to use &#8211; </p>
<pre>a:hover .image { blah }</pre>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: aakash		</title>
		<link>https://shibashake.com/wp/css-opacity-5-faces-of-transparency/comment-page-1#comment-434</link>

		<dc:creator><![CDATA[aakash]]></dc:creator>
		<pubDate>Thu, 05 Nov 2009 12:00:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.shibashake.com/wordpress-theme/?p=1082#comment-434</guid>

					<description><![CDATA[.image 
{	
	background-image: url(anu.png);	
	background-repeat: no-repeat;       
	height:200px;
	width: 250px;
	position:fixed;
	left: 80%;
        opacity:0.5;   
	

}
.image:hover 
{
        opacity:100;
        	
}


i followed and the instructions given above and wrote this code but only my image apocity is getting change but no hover effect is taking place. can you plz tell me whats wrong with this....


thanks]]></description>
			<content:encoded><![CDATA[<p>.image<br />
{<br />
	background-image: url(anu.png);<br />
	background-repeat: no-repeat;<br />
	height:200px;<br />
	width: 250px;<br />
	position:fixed;<br />
	left: 80%;<br />
        opacity:0.5;   </p>
<p>}<br />
.image:hover<br />
{<br />
        opacity:100;</p>
<p>}</p>
<p>i followed and the instructions given above and wrote this code but only my image apocity is getting change but no hover effect is taking place. can you plz tell me whats wrong with this&#8230;.</p>
<p>thanks</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/

Object Caching 11/23 objects using disk
Page Caching using disk: enhanced 
Content Delivery Network via Amazon Web Services: CloudFront: cdn.shibashake.com
Lazy Loading (feed)
Minified using disk
Database Caching 2/21 queries in 0.011 seconds using disk (Request-wide modification query)

Served from: www.shibashake.com @ 2024-12-16 11:45:10 by W3 Total Cache
-->