效果說(shuō)明:
????實(shí)現(xiàn)鼠標(biāo)移入和移出對(duì)象時(shí)的,對(duì)象背景漸隱漸現(xiàn)的動(dòng)態(tài)效果。
<SCRIPT language=JavaScript>
<!--
??? function over(obj, col,idNum) {
??????? changeColor(obj, col);
??? }
??? function out(obj,idNum) {
??????? changeColor(obj, "#3B77AB");
??? }
??? function changeColor(obj, col) {
??????? obj.filters.blendTrans.apply();
??? ??? obj.style.backgroundColor= col;
??????? obj.filters.blendTrans.play();
??? }
//-->
</SCRIPT>
<style>
??? .login {
??????? width:100px;
??????? height:19px;
??????? background-color:#3B77AB;
??????? filter: blendTrans(duration=0.5);
??? }
</style>
<div class="login" onMouseOver="over(this, '#EFF8E2',2)" onMouseOut="out(this,2)" >
??? AAAAAAAAA
??? AAAAAAAAA
??? AAAAAAAAA
</div>
效果(鼠標(biāo)移動(dòng)到對(duì)象上察看):
AAAAAAAAA AAAAAAAAA AAAAAAAAA