用js实现左右阴影的切换
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用js实现左右阴影的切换相关的知识,希望对你有一定的参考价值。
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
<style type="text/css">
p{
text-align:center;
font:bold 60px Verdana, Geneva, sans-serif;
text-shadow:1em 1em 1em red;}
</style>
</head>
<body>
<p id="bt">HTML5+CSS3</p>
<input type="button" onClick="change(‘1em 1em 1em red‘)" value="右下角"/>
<input type="button" onClick="change(‘-1em 1em 1em yellow‘)" value="左下角"/>
<script type="text/javascript">
function change(bt){
document.getElementById("bt").style.textShadow=bt;}
</script>
</body>
</html>
以上是关于用js实现左右阴影的切换的主要内容,如果未能解决你的问题,请参考以下文章