溫馨提示×

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

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

CSS3怎么實(shí)現(xiàn)側(cè)邊欄展開(kāi)收起動(dòng)畫(huà)

發(fā)布時(shí)間:2021-08-10 18:31:19 來(lái)源:億速云 閱讀:216 作者:chen 欄目:web開(kāi)發(fā)

這篇文章主要講解了“CSS3怎么實(shí)現(xiàn)側(cè)邊欄展開(kāi)收起動(dòng)畫(huà)”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來(lái)研究和學(xué)習(xí)“CSS3怎么實(shí)現(xiàn)側(cè)邊欄展開(kāi)收起動(dòng)畫(huà)”吧!

@keyframes

規(guī)則用于創(chuàng)建動(dòng)畫(huà)。

@keyframes 中規(guī)定某項(xiàng) CSS 樣式,就能創(chuàng)建由當(dāng)前樣式逐漸改為新樣式的動(dòng)畫(huà)效果

@keyframes 中創(chuàng)建動(dòng)畫(huà)時(shí),請(qǐng)把它捆綁到某個(gè)選擇器,否則不會(huì)產(chǎn)生動(dòng)畫(huà)效果。

通過(guò)規(guī)定至少以下兩項(xiàng) CSS3 動(dòng)畫(huà)屬性,即可將動(dòng)畫(huà)綁定到選擇器:

      規(guī)定動(dòng)畫(huà)的名稱
      規(guī)定動(dòng)畫(huà)的時(shí)長(zhǎng)

animation


animation 屬性是一個(gè)簡(jiǎn)寫(xiě)屬性,用于設(shè)置動(dòng)畫(huà)屬性:

animation-name:規(guī)定 @keyframes 動(dòng)畫(huà)的名稱。
animation-duration:規(guī)定動(dòng)畫(huà)完成一個(gè)周期所花費(fèi)的秒或毫秒。默認(rèn)是 0。
animation-timing-function:規(guī)定動(dòng)畫(huà)的速度曲線。默認(rèn)是 "ease"。
animation-delay:規(guī)定動(dòng)畫(huà)何時(shí)開(kāi)始。默認(rèn)是 0
animation-iteration-count:規(guī)定動(dòng)畫(huà)被播放的次數(shù)。默認(rèn)是 1。
animation-direction:規(guī)定動(dòng)畫(huà)是否在下一周期逆向地播放。默認(rèn)是 "normal"。
animation-fill-mode:規(guī)定對(duì)象動(dòng)畫(huà)時(shí)間之外的狀態(tài)

側(cè)邊欄實(shí)現(xiàn)

代碼如下:


/* 動(dòng)畫(huà)定義 */
@-webkit-keyframes move_right {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(120px);
        transform: translateX(120px);
    }
}
@keyframes move_right {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(120px);
        transform: translateX(120px);
    }
}
@-webkit-keyframes move_left {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translateX(-120px);
        transform: translateX(-120px);
    }
}
@keyframes move_left {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translateX(-120px);
        transform: translateX(-120px);
    }
}
@-webkit-keyframes move_up {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(-250px);
        transform: translateY(-250px);
    }
}
@keyframes move_up {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(-250px);
        transform: translateY(-250px);
    }
}

代碼如下:


/* 動(dòng)畫(huà)綁定 */
.move_right {
    -webkit-animation-name            : move_right;
    animation-name            : move_right;
    -webkit-animation-duration        : 1s;
    animation-duration        : 1s;
    -webkit-animation-iteration-count : 1;
    animation-iteration-count : 1;
    -webkit-animation-fill-mode : forwards;
    animation-fill-mode : forwards;
}
.move_left {
    -webkit-animation-name            : move_left;
    animation-name            : move_left;
    -webkit-animation-duration        : 1s;
    animation-duration        : 1s;
    -webkit-animation-iteration-count : 1;
    animation-iteration-count : 1;
    -webkit-animation-fill-mode : forwards;
    animation-fill-mode : forwards;
}
.move_up {
    -webkit-animation-name            : move_up;
    animation-name            : move_up;
    -webkit-animation-duration        : 1s;
    animation-duration        : 1s;
    -webkit-animation-iteration-count : 1;
    animation-iteration-count : 1;
    -webkit-animation-fill-mode : forwards;
    animation-fill-mode : forwards;
}
.fadeIn {
    -webkit-transform : translateX(120px);
    transform : translateX(120px);
    opacity: 1;
}
.fadeInUp {
    -webkit-transform : translateY(-250px);
    transform : translateY(-250px);
    opacity: 1;
    -webkit-transition :-webkit-transform .2s ease-out,opacity .2s ease-out;
    transition :transform .2s ease-out, opacity .2s ease-out;
}
.fadeOutLeft {
    -webkit-transform : translateX(-120px);
    transform : translateX(-120px);
    opacity: 0.0;
    -webkit-transition :-webkit-transform .2s ease-out,opacity .2s ease-out;
    transition :transform .2s ease-out, opacity .2s ease-out;
}

html

代碼如下:


<!doctype html>
<html lang="en" class="fullHeight">
<head>
    <meta charset="UTF-8">
    <title>demo</title>
    <link rel="stylesheet" type="text/css" href="sidebar.css">
</head>
<body class="fullHeight">
    <div class='sidebar fullHeight'>sidebar</div>
    <div class="controller">
        <div>
            <button onclick="fadeIn()">淡進(jìn)</button>
            <button onclick="fadeOut()">淡出</button>
        </div>
        <div>
            <button onclick="fadeInUp()">向上淡進(jìn)</button>
            <button onclick="fadeOutLeft()">向左淡出</button>
        </div>
    </div>
    <script src="sidebarEffects.js"></script>
</body>
</html>

加入JS

代碼如下:


<script>
var sidebarEl = document.querySelector(".sidebar");
function fadeIn (e) {
    sidebarEl.className = 'sidebar fullHeight';
    sidebarEl.style.top = '0px';
    sidebarEl.style.left = '0px';
    sidebarEl.classList.add('move_right');
}
function fadeOut (e) {
    sidebarEl.className = 'sidebar fullHeight';
    sidebarEl.style.left = '120px';
    sidebarEl.classList.add('move_left');
}
function fadeInUp(e) {
    sidebarEl.className = 'sidebar fullHeight';
    sidebarEl.style.top = '250px';
    sidebarEl.style.left = '120px';
    sidebarEl.classList.add('move_up');
}
function fadeOutLeft(e) {
    sidebarEl.className = 'sidebar fullHeight';
    sidebarEl.style.top = '0px';
    sidebarEl.style.left = '120px';
    sidebarEl.classList.add('move_left');
}
</script>

感謝各位的閱讀,以上就是“CSS3怎么實(shí)現(xiàn)側(cè)邊欄展開(kāi)收起動(dòng)畫(huà)”的內(nèi)容了,經(jīng)過(guò)本文的學(xué)習(xí)后,相信大家對(duì)CSS3怎么實(shí)現(xiàn)側(cè)邊欄展開(kāi)收起動(dòng)畫(huà)這一問(wèn)題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!

向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