当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JQuery animate()用法及代码示例


animate()方法是一个内置方法jQuery这是用来使用 CSS 样式更改元素的状态。此方法还可用于更改 CSS 属性来为所选元素创建动画效果。

用法:

(selector).animate({styles}, para1, para2, para3);

这里“selector”是选定的元素。

参数:它接受下面指定的四个参数 -

  • Styles:它有助于设置新的 CSS 属性。
  • para1:它是一个可选参数,用于设置参数的速度,默认值为400毫秒。
  • para2:它是可选的,指定元素在不同位置的速度。
  • para3:它是一个可选函数,用于在动画完成后执行。

返回值:它返回使用上述方法所做的更改。

示例 1:在此示例中,参数未传递给此方法。

HTML


<!DOCTYPE html> 
<html> 
  
<head> 
    <script src= 
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> 
    </script> 
    <!--jQuery code to show animate() method-->
    <script> 
          
            $(document).ready(function () { 
                $("#b1").click(function () { 
                    $("#box").animate({ 
                        width: "300px" 
                    }); 
                    $("#box").animate({ 
                        height: "300px" 
                    }); 
                }); 
            }); 
    </script> 
    <style> 
        div { 
            width: 100px; 
            height: 100px; 
            background-color: green; 
        } 
  
        #b1 { 
            margin-top: 10px; 
        } 
    </style> 
</head> 
  
<body> 
    <div id="box"></div> 
    <!-- click on this button -->
    <button id="b1">Click Here !</button> 
</body> 
  
</html>

输出:

示例 2:在此示例中,所有参数都传递给此方法。

HTML


<!DOCTYPE html> 
<html> 
  
<head> 
    <script src= 
"https://code.jquery.com/jquery-1.10.2.js"> 
    </script> 
    <style> 
        div { 
            background-color: green; 
            height: 100px; 
            width: 100px; 
            margin-top: 10px; 
        } 
  
        #b1 { 
            margin-top: 10px; 
        } 
    </style> 
</head> 
  
<body> 
    <div id="box"></div> 
    <!-- click here and animation will start -->
    <button id="b1">Click Here !</button> 
    <!-- jQuery code to show the animate method -->
    <script> 
        $(document).ready(function () { 
            $("#b1").click(function () { 
                $("#box").animate({ 
                    height: "200px", 
                    width: "200px" 
                }, { 
                    duration: 1000, 
                    easing: "linear", 
                    complete: function () { 
                        $(this).after( 
"<p>Reaches to maximum height and width !</p>"); 
                    } 
                }); 
            }); 
        }); 
    </script> 
</body> 
  
</html>

输出:



相关用法


注:本文由纯净天空筛选整理自kundankumarjha大神的英文原创作品 jQuery animate() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。