HTML DOM 스타일의 textShadow 속성은 텍스트가 HTML 문서의 요소 컨테이너 외부로 흐를 때 발생하는 상황을 반환하고 적용합니다.
구문
다음은 구문입니다 -
-
textShadow 반환
object.style.textShadow
-
textShadow 수정
object.style.textShadow = “value”
값
여기서 값은 -
일 수 있습니다.값 | 설명 |
---|---|
상속 | 상위 요소에서 이 속성 값을 상속합니다. |
초기 | 이 속성 값을 기본값으로 설정합니다. |
없음 | 텍스트에 그림자를 설정하지 않습니다. |
h-shadow v-shadow 흐림 색상 | 텍스트에 그림자를 설정합니다. 여기 h-shadow는 수평 그림자의 값을 나타냅니다. v-shadow는 수직 그림자의 값을 나타냅니다. 흐림은 흐림 거리를 나타냅니다. color는 그림자의 색을 나타냅니다. |
예시
스타일 textShadow 속성의 예를 살펴보겠습니다 -
<!DOCTYPE html> <html> <head> <style> body { color: #000; background: lightblue; height: 100vh; } p { margin: 1.5rem auto; } .btn { background: #db133a; border: none; height: 2rem; border-radius: 2px; width: 40%; display: block; color: #fff; outline: none; cursor: pointer; } </style> </head> <body> <h1>DOM Style textShadow Property Example</h1> <p>Some Dummy Text</p> <button onclick="add()" class="btn">Set textShadow</button> <script> function add() { document.querySelector('p').style.textShadow = "10px 10px 2px #db133a"; } </script> </body> </html>
출력
이것은 다음과 같은 출력을 생성합니다 -
"텍스트 섀도우 설정을 클릭합니다. " 버튼을 눌러 단락 텍스트에 그림자를 적용합니다.