當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。