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


JQuery animate()用法及代碼示例


animate()是jQuery中的內置方法,用於通過CSS樣式更改元素的狀態。此方法還可以用於更改CSS屬性,以為所選元素創建動畫效果。

用法:

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

“selector”是選定的元素。

參數:它接受以下指定的四個參數-


  • Styles:它有助於設置新的CSS屬性。
  • para1:它是可選參數,用於設置參數的速度,其默認值為400毫秒。
  • para2:它是可選的,它指定元素在不同位置的速度。
  • para3:這是可選函數,用於在動畫完成後執行。

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

jQuery代碼顯示animate()方法的用法方式:

代碼1:
<html> 
  
<head> 
    <script src="https://ajax.googleapis.com/ajax/libs/ 
           jquery/3.3.1/jquery.min.js"></script> 
    <script> 
        <!-- jQuery code to show animate() method -->
        $(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> 
  
<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>

輸出:
在單擊“Click Here”按鈕之前,

單擊“Click Here”按鈕後,



相關用法


注:本文由純淨天空篩選整理自kundankumarjha大神的英文原創作品 jQuery | animate() with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。