CSS中的行為——HTC

來源:互聯網
上載者:User
css|htc

最近對這些CSS中的行為有點興趣,看了些文檔作了個表單滑鼠滑過效果。當然HTC的用途,大家最喜歡的要數自製組建,自訂標籤了。

Quote
說明:
HTC是HTML component的縮寫,
是IE5.0的主要擴充之一,
除了具備一般組件的可重用優點之外,
還具有易於開發使用等優點,
因為需要引入外部檔案,這裡就不舉例了,寶庫裡有例子.

控制項和組件
HTC提供了一個簡單機制以在指令碼中實現DHTML行為。一個HTC檔案和HTML檔案沒有任何差別,並且以“.htc”為尾碼。

關於demo,我看到一些表單的輸入框,有滑鼠滑過效果,或者背景變色或者邊框變色。使用:hover很容易實現,可惜MS IE7以前的瀏覽器不能支援,那麼就單獨給IE5.+使用HTC定義滑鼠行為。其實這個實用JS實現也挺容易,我就想拿HTC練練手。先看看效果

下面是代碼

XHTML結構來自ALA的Prettier Accessible Forms。這裡多說一嘴,建議大家以後做表單的時候多採用下面的結構,Strict型xhtml建議<form>下不可以直接放置表單元素。而用<ol>來組織多個表單也是合理的。

<fieldset>
 <legend>Delivery Details</legend>
 <ol>
 <li>
 <label for="name">Name<em>*</em></label>
 <input id="name" />
 </li>
 <li>
 <label for="address1">Address<em>*</em></label>
 <input id="address1" />
 </li>
 <li>
 <label for="address2">Address 2</label>
 <input id="address2" />
 </li>
 <li>
 <label for="town-city">Town/City</label>
 <input id="town-city" />
 </li>
 <li>
 <label for="county">County<em>*</em></label>
 <input id="county" />
 </li>
 <li>
 <label for="postcode">Postcode<em>*</em></label>
 <input id="postcode" />
 </li>
 <li>
 <fieldset>
 <legend>Is this address also your invoice »
address?<em>*</em></legend>
 <label><input type="radio" »
name="invoice-address" /> Yes</label>
 <label><input type="radio" »
name="invoice-address" /> No</label>
 </fieldset>
 </li>
 </ol>
</fieldset>

HTC:input.htc

<PUBLIC:COMPONENT>
<PUBLIC:ATTACH EVENT="onmouseover" ONEVENT="Hilite()" />
<PUBLIC:ATTACH EVENT="onmouseout" ONEVENT="Restore()" />
<SCRIPT LANGUAGE="JScript">
<!--
 function Hilite()
 {
 // save original values
 element.style.border = "1px #f60 solid";
 element.style.background = "#f5f5f5";
 }

 function Restore()
 {
 // restore original values
 element.style.border = "1px #ccc solid";
 element.style.background = "#fff";
 }
-->
</SCRIPT>
</PUBLIC:COMPONENT>

CSS

<style type="text/css">
<!--
*{color:#666; font-size:11px;font-family:Arial, Helvetica, sans-serif;}
body{text-align:center;}
  fieldset{border:1px #eee solid; width:310px; margin:0 auto; padding:8px; text-align:left;}
    legend{padding:4px;}
    fieldset label{float:left; width:70px; text-align:right;padding:0 10px;}
    fieldset ol{list-style:none; margin:0; padding:0;}
    fieldset ol li{clear:both; line-height:20px;}
    fieldset ol li fieldset{width:280px;}
    input{behavior:url(input.htc); border:1px #ccc solid; background:#fff; width:160px;}/*Only for ie 5.0+*/
    label input{width:14px;height:14px;border:0;} /*For input type is Radio*/
    input:hover{border:1px #f60 solid;background:#f5f5f5;}/*For orther browsers*/
    em{color:#ff0000;}
-->
</style>



相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.