當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML DOM Style opacity屬性用法及代碼示例


DOM 樣式的 opacity 屬性返回並修改 HTML 文檔中元素的 opacity CSS 屬性的值。

用法

以下是語法 -

  • 1. 返回不透明度

object.style.opacity
  • 修改不透明度

object.style.opacity = “value”

示例

讓我們看一個樣式不透明度屬性的例子 -

<!DOCTYPE html>
<html>
<head>
<style>
   body {
      color:#000;
      background:lightblue;
      height:100vh;
   }
   p {
      background:#1f13db;
      height:50px;
      width:100%;
   }
   .btn {
      background:#db133a;
      border:none;
      height:2rem;
      border-radius:2px;
      width:40%;
      display:block;
      color:#fff;
      outline:none;
      cursor:pointer;
   }
</style>
</head>
<body>
<h1>DOM Style opacity Property Example</h1>
<p></p>
<button onclick="add()" class="btn">Add opacity</button>
<script>
   function add() {
      document.querySelector('p').style.opacity = "0.2";
   }
</script>
</body>
</html>

輸出

這將產生以下輸出 -

點擊 ”Add opacity”按鈕添加操作屬性 -

相關用法


注:本文由純淨天空篩選整理自AmitDiwan大神的英文原創作品 HTML DOM Style opacity Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。