jQuery 中的 Jquery

首页 / jQuery入门教程 / jQuery 中的 Jquery

jQuery.fx.off()方法全局禁用所有动画。

Jquery-fx - 语法

jQuery.fx.off=[true | false ] ;

下面是此方法-使用的所有参数的说明

Jquery-fx - 示例

下面是一个简单的示例,显示了这个方法-的用法

<html>
   <head>
      <title>The jQuery Example</title>
      <script type="text/javascript" 
         src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js">
      </script>
		
      <script type="text/javascript" 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>

这将产生以下输出-

无涯教程网

祝学习愉快!(内容编辑有误?请选中要编辑内容 -> 右键 -> 修改 -> 提交!)

技术教程推荐

持续交付36讲 -〔王潇俊〕

零基础学Java -〔臧萌〕

TypeScript开发实战 -〔梁宵〕

性能优化高手课 -〔尉刚强〕

如何读懂一首诗 -〔王天博〕

去无方向的信 -〔小麥〕

Go进阶 · 分布式爬虫实战 -〔郑建勋〕

结构写作力 -〔李忠秋〕

结构思考力 · 透过结构看思考 -〔李忠秋〕

好记忆不如烂笔头。留下您的足迹吧 :)