Translate

2012年2月14日 星期二

用css方式秀出提示小視窗




<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
  <style type="text/css">
        <!--
        body {
        padding-left:50px;
        }
        a.show {
        color:block;
        text-decoration: underline;
        position:relative;}
        a.show span{
        display:none; }
        a.show:hover{
        cursor:hand;
        }
        a.show:hover .show_text{
        display: block;
        position:absolute;
        padding:10px;
        width:200px;
        height:30px;
        background:#000000;
        left:60px;
        top:30px;
        color:#FFFFFF;
        z-index:100;
        text-decoration: none;
        }
        -->
    </style>
  <meta http-equiv="content-type" content="text/html; charset=utf-8">
  <meta name="generator" content="PSPad editor, www.pspad.com">
  <title></title>
  </head>
  <body>

          <a href='' class='show'>點我看提式小視窗
                      <span class='show_text'>想秀出的訊息</span>
          </a>
  </body>
</html>

沒有留言:

張貼留言