Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

JavaScript로 텍스트의 그림자 효과를 설정하는 방법은 무엇입니까?


그림자 효과를 설정하려면 textShadow를 사용하세요. JavaScript의 속성

예시

다음 코드를 실행하여 JavaScript로 텍스트의 그림자 효과를 반환할 수 있습니다. -

<!DOCTYPE html>
<html>
   <body>
      <button onclick = "display()">Set Text Shadow</button>

      <div id = "myID">
         This is Demo Text! This is Demo Text! This is <br>This is Demo Text! This is Demo Text! This is Demo Text! This is Demo Text!<br> This is Demo Text!<br> This is Demo Text! This is Demo Text! This is Demo Text! This is Demo Text!
      </div>

      <script>
         function display() {
            document.getElementById("myID").style.textShadow = "2px 2px 2px #ff0000,20px 5px 2px #F1F1F1";
         }
      </script>
   </body>
</html>