codecamp

HTML DOM Style textShadow 属性

Style textShadow 属性

Style 对象参考手册 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 颜色值 中寻找可能的颜色值的完整列表。
inherit textShadow 属性的值从父元素继承。


浏览器支持

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 对象参考手册 Style 对象
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

HTML DOM对象

HTML DOM 引用对象

HTML DOM Password 对象

HTML DOM Link 对象

HTML DOM Select 对象

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }