PHP & JavaScript Room :: 設置サンプル

実行結果

IE PNG Fix

div要素の例(背景画像に透過PNG画像指定)

適用前適用後
適用前
適用前

設置サンプルのソース

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja">
   <head>
      <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
      <meta http-equiv="Content-Language" content="ja" />
      <meta http-equiv="Content-Script-Type" content="text/javascript" />
      <meta http-equiv="Content-Style-Type" content="text/css" />
      <meta http-equiv="imagetoolbar" content="no" />
      <title>IE PNG Fix | 設置サンプル</title>
      <link rel="stylesheet" type="text/css" href="/content/lib/global.css" />
      <!-- CSS -->
      <style type="text/css">
         div#iepng_off,
         div#iepng_on {
            background:transparent url("/content/img/dog_white.png") no-repeat 0 0;
            width:90px; height:90px;
            text-indent:-9999px;
         }
         /* IE6以下のブラウザに適用 */
         * html body div#iepng_on {
            background:none;
            filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="/content/img/dog_white.png", sizingMethod="scale");
         }
      </style>
   <link rel="stylesheet" type="text/css" href="/common/css/example.css"></head>
   <body id='example3' class='example'><div class="ads" style="margin:32px auto;text-align:center;"></div><h1 class='h'><a href='/'>PHP &amp; JavaScript Room</a> :: 設置サンプル</h1>
<h3 class='h'>実行結果</h3>
      <div id="wrap">
         <h1><a href='http://plugins.jquery.com/project/iepngfix'>IE PNG Fix</a></h1>
<!-- CODE -->
         <h2>div要素の例(背景画像に透過PNG画像指定)</h2>
         <table>
            <tr><th>適用前</th><th>適用後</th>
            <tr>
               <td><div id="iepng_off">適用前</div></td>
               <td><div id="iepng_on">適用前</div></td>
            </tr>
         </table>
      </div>
<!-- / CODE -->
   </body>
</html>