jQuery 中的 Jquery

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

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

Jquery-fx - 语法

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

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

链接:https://www.learnfk.comhttps://www.learnfk.com/jquery/effect-jquery-fx.html

来源:LearnFk无涯教程网

  • boolean    -  应设置为False以启用动画,或设置为True以全局禁用动画。

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>

这将产生以下输出-

无涯教程网

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

技术教程推荐

AI技术内参 -〔洪亮劼〕

TypeScript开发实战 -〔梁宵〕

ZooKeeper实战与源码剖析 -〔么敬国〕

人人都能学会的编程入门课 -〔胡光〕

Go 并发编程实战课 -〔晁岳攀(鸟窝)〕

恋爱必修课 -〔李一帆〕

爆款文案修炼手册 -〔乐剑峰〕

如何讲好一堂课 -〔薛雨〕

搞定音频技术 -〔冯建元 〕

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