我正在尝试使用javascript在9点至10点之间更改文本阴影的方向。
尝试了许多更改,但不确定我要去哪里,这是我代码的基础。
<head>
<style>
body {
text-shadow: 12px 12px 8px #000000;
}
</style>
<script>
var currentTime = new Date().getHours();
if (21 <= currentTime && currentTime < 22)
{
document.getElementById('body').text.style.textShadow = "-12px 12px 8px
#000000";
}
</script>
</head>
..还没有包含正文,但是我的文字在
10-02 14:15