Style textShadow 屬性
Style 對象定義和用法
textShadow 屬性設(shè)置或返回一個或多個的文本陰影效果。
語法
設(shè)置 textShadow 屬性:
Object.style.textShadow="none|h-shadow v-shadow blur color|inherit"
注意:textShadow 屬性向文本附加一個或多個的陰影。該屬性是一個逗號分隔的陰影列表,每個值由 2 或 3 個長度值和一個可選的顏色指定。省略的長度為 0。
返回 textShadow 屬性:
Object.style.textShadow
值 | 描述 |
---|---|
none | 默認。沒有陰影繪制。 |
h-shadow | 必需。水平陰影的位置??墒褂秘撝怠?/td> |
v-shadow | 必需。垂直陰影的位置??墒褂秘撝怠?/td> |
blur | 可選。模糊距離。 |
color | 可選。陰影的顏色。在 CSS 顏色值 中尋找可能的顏色值的完整列表。 |
inherit | textShadow 屬性的值從父元素繼承。 |
瀏覽器支持
所有主要瀏覽器都支持 textShadow 屬性,除了 Internet Explorer。
實例
實例
給文本添加陰影:
<html>
<head>
<script>
function displayResult()
{
document.getElementById("p1").style.textShadow="5px 5px 1px #ff0000";
}
</script>
</head>
<body>
<p id="p1">This is some text.</p>
<br>
<button type="button" onclick="displayResult()">Add shadow to text</button>
</body>
</html>
<head>
<script>
function displayResult()
{
document.getElementById("p1").style.textShadow="5px 5px 1px #ff0000";
}
</script>
</head>
<body>
<p id="p1">This is some text.</p>
<br>
<button type="button" onclick="displayResult()">Add shadow to text</button>
</body>
</html>
嘗試一下 ?
Style 對象
更多建議: