如何使用 JavaScript 设置过渡效果的 CSS 属性?


使用 JavaScript 中的 transitionProperty  来设置 CSS 属性。你可以尝试运行以下代码,使用 JavaScript 返回过渡效果的 CSS 属性 −

示例

<!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);
            transition: all 3s;
         }
         #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.transitionProperty = "width,height";
         }
      </script>
   </body>
</html>

更新时间: 23-6-2020

125 次浏览

开启你的 职业生涯

完成课程后即可获得认证

开始
广告
© . All rights reserved.