溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

jQuery如何創(chuàng)建自定義的動(dòng)畫

發(fā)布時(shí)間:2022-02-22 10:49:40 來(lái)源:億速云 閱讀:130 作者:小新 欄目:開發(fā)技術(shù)

這篇文章主要為大家展示了“jQuery如何創(chuàng)建自定義的動(dòng)畫”,內(nèi)容簡(jiǎn)而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“jQuery如何創(chuàng)建自定義的動(dòng)畫”這篇文章吧。

jQuery 效果 - 動(dòng)畫
jQuery animate() 方法允許您創(chuàng)建自定義的動(dòng)畫。語(yǔ)法:

$(selector).animate({params},speed,callback);

必需的 params 參數(shù)定義形成動(dòng)畫的 CSS 屬性。
可選的 speed 參數(shù)規(guī)定效果的時(shí)長(zhǎng)。它可以取以下值:"slow"、"fast" 或毫秒。
可選的 callback 參數(shù)是動(dòng)畫完成后所執(zhí)行的函數(shù)名稱。

<!DOCTYPE html>
<html>
<head>
<script src="../jquery/jquery-1.11.1.min.js"></script>
<script> 
$(document).ready(function(){
    $("button").click(function(){
        $("div").animate({left:"250px"});
    });
});
</script> 
</head>
<body>
    <button>開始動(dòng)畫</button>
    <p>把 div 元素向右移動(dòng),直到 left 屬性等于 250 像素為止。</p>
    <div style="background:#98bf21;height:100px;width:100px;position:absolute;"></div>
</body>
</html>

提示:默認(rèn)地,所有 HTML 元素都有一個(gè)靜態(tài)位置,且無(wú)法移動(dòng)。
提示:如需對(duì)位置進(jìn)行操作,要把元素的 position 屬性設(shè)置為 relative、fixed 或 absolute!

jQuery animate() - 操作多個(gè)屬性
請(qǐng)注意,生成動(dòng)畫的過(guò)程中可同時(shí)使用多個(gè)屬性:

<!DOCTYPE html>
<html>
<head>
<script src="../jquery/jquery-1.11.1.min.js"></script>
<script> 
$(document).ready(function(){
    $("button").click(function(){
        $("div").animate({
            left:"250px",
            opacity:"0.5",
            height:"150px",
            width:"150px"
        });
    });
});
</script> 
</head>
<body>
    <button>開始動(dòng)畫</button>
    <div style="background:#98bf21;height:100px;width:100px;position:absolute;"></div>
</body>
</html>

提示:可以用 animate() 方法來(lái)操作所有 CSS 屬性嗎?是的,幾乎可以!
    不過(guò),當(dāng)使用 animate() 時(shí),必須使用 Camel 標(biāo)記法書寫所有的屬性名,比如:必須使用 paddingLeft 而不是 padding-left,使用 marginRight 而不是 margin-right,等等。
    同時(shí),色彩動(dòng)畫并不包含在核心 jQuery 庫(kù)中。如果需要生成顏色動(dòng)畫,您需要從 jQuery.com 下載 Color Animations 插件。

jQuery animate() - 使用相對(duì)值
也可以定義相對(duì)值(該值相對(duì)于元素的當(dāng)前值)。需要在值的前面加上 += 或 -=:

<!DOCTYPE html>
<html>
<head>
<script src="../jquery/jquery-1.11.1.min.js"></script>
<script> 
$(document).ready(function(){
    $("button").click(function(){
        $("div").animate({
            left:"250px",
            height:"+=150px",
            width:"+=150px"
        });
    });
});
</script> 
</head>
<body>
    <button>開始動(dòng)畫</button>
    <div style="background:#98bf21;height:100px;width:100px;position:absolute;"></div>
</body>
</html>


jQuery animate() - 使用預(yù)定義的值

<!DOCTYPE html>
<html>
<head>
<script src="../jquery/jquery-1.11.1.min.js"></script>
<script> 
$(document).ready(function(){
    $("button").click(function(){
        $("div").animate({
            height:"toggle"
        });
    });
});
</script> 
</head>
<body>
    <button>開始動(dòng)畫</button>
    <div style="background:#98bf21;height:100px;width:100px;position:absolute;"></div>
</body>
</html>


jQuery animate() - 使用隊(duì)列功能
默認(rèn)地,jQuery 提供針對(duì)動(dòng)畫的隊(duì)列功能。這意味著如果您編寫多個(gè) animate() 調(diào)用:
jQuery 會(huì)創(chuàng)建包含這些方法調(diào)用的“內(nèi)部”隊(duì)列,然后逐一運(yùn)行這些 animate 調(diào)用。
下面的實(shí)例中,我們利用隊(duì)列功能執(zhí)行不同的動(dòng)畫:

<!DOCTYPE html>
<html>
<head>
<script src="../jquery/jquery-1.11.1.min.js"></script>
<script> 
$(document).ready(function(){
    $("button").click(function(){
        var div=$("div");
        div.animate({height:"300px",opacity:"0.4"},"slow");
        div.animate({width:"300px",opacity:"0.8"},"slow");
        div.animate({height:"100px",opacity:"0.4"},"slow");
        div.animate({width:"100px",opacity:"0.8"},"slow");
    });
});
</script> 
</head>
<body>
    <button>開始動(dòng)畫</button>
    <div style="background:#98bf21;height:100px;width:100px;position:absolute;"></div>
</body>
</html>

下面的例子把 <div> 元素移動(dòng)到右邊,然后增加文本的字號(hào):

<!DOCTYPE html>
<html>
<head>
<script src="../jquery/jquery-1.11.1.min.js"></script>
<script> 
$(document).ready(function(){
    $("button").click(function(){
        var div=$("div");  
        div.animate({left:"100px"},"slow");
        div.animate({fontSize:"3em"},"slow");
    });
});
</script> 
</head>
<body>
    <button>開始動(dòng)畫</button>
    <div style="background:#98bf21;height:100px;width:200px;position:absolute;">HELLO</div>
</body>
</html>

以上是“jQuery如何創(chuàng)建自定義的動(dòng)畫”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI