Javascript 参考手册

HTML DOM 对象

Style textShadow 属性

Style 对象

定义和用法

textShadow 属性设置或返回一个或多个的文本阴影效果。

语法

设置 textShadow 属性:

Object.style.textShadow="none|h-shadow v-shadow blur color|inherit"

注意:textShadow 属性向文本附加一个或多个的阴影。该属性是一个逗号分隔的阴影列表,每个值由 2 或 3 个长度值和一个可选的颜色指定。省略的长度为 0。

返回 textShadow 属性:

Object.style.textShadow
描述
none默认。没有阴影绘制。
h-shadow必需。水平阴影的位置。可使用负值。
v-shadow必需。垂直阴影的位置。可使用负值。
blur可选。模糊距离。
color可选。阴影的颜色。在 CSS 颜色值 中寻找可能的颜色值的完整列表。
inherittextShadow 属性的值从父元素继承。

浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要浏览器都支持 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>
尝试一下 »

Style 对象

新闻动态 联系方式 广告合作 招聘英才 安科实验室 帮助与反馈 About Us

Copyright © 2013 - 2019 Ancii.com All Rights Reserved京ICP备18063983号-5 京公网安备11010802014868号