目录

style opacity 属性

示例

使 DIV 元素透明:

document.getElementById("myDIV").style.opacity = "0.5";
亲自试一试 »

描述

opacity 属性设置或返回元素的不透明度级别。

元素的不透明度级别描述了透明度级别,其中 1 完全不透明,0.5 表示 50% 透明,0 表示完全透明。


浏览器支持

Property
opacity Yes Yes Yes Yes Yes

语法

返回不透明度属性:

object.style.opacity

设置不透明度属性:

object.style.opacity = "number|initial|inherit"

属性值

Value Description
number Specifies the opacity. From 0.0 (fully transparent) to 1.0 (fully opaque)
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit

技术细节

默认值: 1
返回值: 一个字符串,表示元素的不透明度级别
CSS版本 CSS3

相关页面

CSS 参考:不透明度属性