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

実行結果

IE PNG Alpha Fix v1.0 | 設置サンプル

img要素の例

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

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 Alpha Fix v1.0 | 設置サンプル</title>
      <link rel="stylesheet" type="text/css" href="/content/lib/global.css" />
      <!-- CSS -->
      <style type="text/css">
         /* img要素のid名が「iepng」の画像に適用 */
         img#iepng { behavior:url("/content/jslib/iepngfix.htc") }

         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;
         }
         /* div要素のid名が「iepng_on」に適用 */
         div#iepng_on { behavior: url("/content/jslib/iepngfix.htc") }
      </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://www.twinhelix.com/css/iepngfix/'>IE PNG Alpha Fix v1.0</a> | 設置サンプル</h1>
<!-- CODE -->
         <h2>img要素の例</h2>
         <table>
            <tr><th>適用前</th><th>適用後</th>
            <tr>
               <td><img src="/content/img/dog_white.png" alt="適用前" /></td>
               <td><img src="/content/img/dog_white.png" alt="適用後" id="iepng" /></td>
            </tr>
         </table>
         <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>
<!-- / CODE -->
      </div>
   </body>
</html>