相容所有瀏覽器js設定元素透明度效果

admin發表於2017-04-01

本章節介紹一下如何實現使用javascript動態設定元素的透明度。

由於存在瀏覽器相容性問題,所以程式碼需要進行相容性處理,有需要的朋友可以做一下參考。

程式碼如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
#antzone{
  width:200px;
  height:200px;
  background:#000;
  line-height:200px;
}
</style>
<script type="text/javascript">
window.onload=function(){
  var ie = ! + "\v1";
  var obt=document.getElementById("bt");
  var odiv=document.getElementById("antzone");
  obt.onclick=function(){
    if(ie){
      odiv.style.filter="alpha(opacity=50%)";
    }
    else{
      odiv.style.opacity="0.5";
    }
  }
}
</script>
</head>
<body>
<div id="antzone">螞蟻部落</div>
<input type="button" id="bt" value="檢視效果"/>
</body>
</html>

上面的程式碼實現了相容所有瀏覽器的動態設定透明度效果。

相關文章