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

JavaScript로 네 가지 전환 속성을 설정하는 방법은 무엇입니까?


전환 사용 JavaScript의 속성에서 transitionProperty, transitionDuration, transitionTimingFunction 및 transitionDelay의 네 가지 속성을 설정합니다.

예시

다음 코드를 실행하여 JavaScript로 네 가지 전환 속성을 설정하는 방법을 배울 수 있습니다 -

<!DOCTYPE html>
<html>
   <head>
      <style>
         #div1 {
            position: relative;
            margin: 10px;
            height: 300px;
            width: 400px;
            padding: 20px;
            border: 2px solid blue;
         }
         #div2 {
            padding: 80px;
            position: absolute;
            border: 2px solid BLUE;
            background-color: yellow;
            transform: rotateY(45deg);
         }
         #div2:hover {
            background-color: orange;
            width: 50px;
            height: 50px;
            padding: 100px;
            border-radius: 50px;
         }
      </style>
   </head>
   <body>
      <p>Hover over DIV2</p>

      <button onclick = "display()">Set</button>

      <div id = "div1">DIV1
         <div id = "div2">DIV2</div>
      </div>
   
      <script>
         function display() {
            document.getElementById("div2").style.transition = "all 2s";
         }
      </script>
   </body>
</html>