<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>spring-tree &#187; web design</title>
	<atom:link href="http://spring-tree.org/archives/tag/web_design/feed" rel="self" type="application/rss+xml" />
	<link>http://spring-tree.org</link>
	<description>主に岡山の自然の風景や夜景・パノラマ写真など写真を公開しています。</description>
	<lastBuildDate>Wed, 09 Dec 2009 04:38:59 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>本日のわたくし -Lightboxなどで、Flashが前面に表示される編-</title>
		<link>http://spring-tree.org/archives/94</link>
		<comments>http://spring-tree.org/archives/94#comments</comments>
		<pubDate>Mon, 19 Jan 2009 04:06:08 +0000</pubDate>
		<dc:creator>spring-tree</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[weblog]]></category>

		<guid isPermaLink="false">http://spring-tree.org/?p=94</guid>
		<description><![CDATA[Flashを使用しているページに、Lightboxなどを使用している場合、
Flashが前面にきてしまい、グレーの背景に隠れないってことがあります。
こんな感じに
結構、自分なりに悩み四苦八苦した結果…
検索すると、
小 [...]]]></description>
			<content:encoded><![CDATA[<p>Flashを使用しているページに、Lightboxなどを使用している場合、<br />
Flashが前面にきてしまい、グレーの背景に隠れないってことがあります。</p>
<p>こんな感じに<br />
<div id="attachment_95" class="wp-caption alignnone" style="width: 529px"><img class="size-full wp-image-95" title="Flashが前面にきてしまう" src="http://spring-tree.org/wordpress/wp-content/uploads/2009/01/pic01.jpg" alt="Flashが前面にきてしまう" width="519" height="343" /><p class="wp-caption-text">Flashが前面にきてしまう</p></div></p>
<p>結構、自分なりに悩み四苦八苦した結果…<br />
検索すると、<br />
<a href="http://www.koikikukan.com/" target="_blank">小粋空間</a>さんの「<a href="http://www.koikikukan.com/archives/2006/03/17-021717.php" target="_blank">Lightbox JS でブログパーツ等の Flash を PNG 背景画像の下に隠す</a>」という記事で紹介されていました。</p>
<p>object要素に下記を追加</p>
<pre name="code" class="html">&lt;param name="wmode" value="transparent"&gt;</pre>
<p>さらに、embed 要素に wmode 属性を追加</p>
<pre name="code" class="js">wmode="transparent"</pre>
<p>結果</p>
<div id="attachment_102" class="wp-caption alignnone" style="width: 529px"><img class="size-full wp-image-102" title="正常に背面に表示される" src="http://spring-tree.org/wordpress/wp-content/uploads/2009/01/pic02.jpg" alt="正常に背面に表示されました" width="519" height="343" /><p class="wp-caption-text">正常に背面に表示されました</p></div>
]]></content:encoded>
			<wfw:commentRss>http://spring-tree.org/archives/94/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>本日のわたくし -IE6で見ると「アナログ」と表示される編-</title>
		<link>http://spring-tree.org/archives/35</link>
		<comments>http://spring-tree.org/archives/35#comments</comments>
		<pubDate>Fri, 16 Jan 2009 11:01:42 +0000</pubDate>
		<dc:creator>spring-tree</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[weblog]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[アナログ]]></category>

		<guid isPermaLink="false">http://spring-tree.org/?p=35</guid>
		<description><![CDATA[このサイトをInternet Explorer 6以下で表示すると
画面の右上に「アナログ」って表示されてます。
元のネタはCSS HappyLifeさんが記事に書いていたものです。
面白そうなので、やってみました。
ち [...]]]></description>
			<content:encoded><![CDATA[<p>このサイトをInternet Explorer 6以下で表示すると<br />
画面の右上に「アナログ」って表示されてます。</p>
<p>元のネタは<a href="http://css-happylife.com/log/zakki/000736.shtml" target="_blank">CSS HappyLife</a>さんが記事に書いていたものです。<br />
面白そうなので、やってみました。</p>
<div id="attachment_58" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-58" title="ie_analogue" src="http://spring-tree.org/wordpress/wp-content/uploads/2009/01/ie_analogue.jpg" alt="IEアナログ" width="500" height="300" /><p class="wp-caption-text">Internet Explorer 6以下で表示した場合</p></div>
<p>ちみにcssコードは<br/></p>
<pre name="code" class="css">
.analogue {
 display: none;
 }

*html .analogue {
 display: block;
 position: absolute;
 top: 30px;
 right: 15px;
 background: #ffffff;
 padding: 8px 10px;
 border: 1px solid #333333;
 font-size: 12px;
 font-weight: bold;
 color: #333333;
 filter:progid:DXImageTransform.Microsoft.
Alpha(Enabled=1,Style=0,Opacity=60);
 }
</pre>
<p> filter:progid:DXImageTransform.Microsoft.Alpha(Enabled=1,Style=0,Opacity=60);<br />
上の記述で不透明度を60%に設定してます。</p>
<p>でもってHTMLには</p>
<pre name="code" class="html">
&lt;div class="analogue" title="アナログ"&gt;アナログ&lt;/div&gt;
</pre>
<p>完成！</p>
<p>そろそろ、部屋のテレビも買い替えなきゃなぁ。</p>
]]></content:encoded>
			<wfw:commentRss>http://spring-tree.org/archives/35/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
