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

jQuery를 사용하여 애니메이션을 전역적으로 비활성화하는 방법은 무엇입니까?

<시간/>

jQuery를 사용하여 애니메이션을 전역적으로 비활성화하려면 jQuery.fx.off() 메서드를 사용하십시오.

애니메이션을 활성화하려면:

$("#enable").click(function(){
   jQuery.fx.off = false;
});

애니메이션을 비활성화하려면 jQuery.fx.off()를 true로 설정하십시오.

$("#disable").click(function(){
   jQuery.fx.off = true;
});

다음 코드를 실행하여 jQuery를 사용하여 애니메이션을 전역적으로 비활성화할 수 있습니다.

예시

<html>
<head>
<title>The jQuery Example</title>
   <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>

   <script language = "javascript">
      $(document).ready(function() {

         $("#enable").click(function(){
            jQuery.fx.off = false;
         });

         $("#disable").click(function(){
            jQuery.fx.off = true;
         });

         $("#go").click(function(){
            $(".target").animate({left: '+=200px'}, 2000);
         });

         $("#back").click(function(){
            $(".target").animate({left: '-=200px'}, 200);
         });

      });
   </script>

<style>
p {background-color:#bca; width:350px; border:1px solid green;}
div{position: absolute; left: 50px; top:300px;}
</style>
</head>

<body>

<p>Click enable or disable and then go or back button:</p>

<button id = "enable"> Enable</button>
<button id = "disable"> Disable </button>
<button id = "go"> GO</button>
<button id = "back"> BACK </button>

<div class = "target">
   <img src = "./images/jquery.jpg" alt = "jQuery" />
</div>

</body>

</html>