国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

前端每日實戰:39# 視頻演示如何用純 CSS 創作一個表達懷念童年心情的條紋彩虹心特效

陸斌 / 395人閱讀

摘要:效果預覽按下右側的點擊預覽按鈕可以在當前頁面預覽,點擊鏈接可以全屏預覽。可交互視頻教程此視頻是可以交互的,你可以隨時暫停視頻,編輯視頻中的代碼。

效果預覽

按下右側的“點擊預覽”按鈕可以在當前頁面預覽,點擊鏈接可以全屏預覽。

https://codepen.io/comehope/pen/QxbmxJ

可交互視頻教程

此視頻是可以交互的,你可以隨時暫停視頻,編輯視頻中的代碼。

請用 chrome, safari, edge 打開觀看。

https://scrimba.com/p/pEgDAM/cepNzTW

源代碼下載

每日前端實戰系列的全部源代碼請從 github 下載:

https://github.com/comehope/front-end-daily-challenges

代碼解讀

定義 dom,容器中包含 9 個

居中顯示:

body {
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, navy, black);
}

定義容器尺寸:

.heart {
    width: 14em;
    height: 11em;
}

布局容器中的豎條紋:

.heart {
    display: flex;
    justify-content: space-between;
}

.heart span {
    width: 1em;
    background-color: lightblue;
    border-radius: 0.5em;
}

為豎條紋配色,條紋的樣式是左右對稱的:

.heart span {
    background-color: var(--c);
}

.heart span:nth-child(1),
.heart span:nth-child(9) {
    --c: orangered;
}

.heart span:nth-child(2),
.heart span:nth-child(8) {
    --c: gold;
}

.heart span:nth-child(3),
.heart span:nth-child(7) {
    --c: limegreen;
}

.heart span:nth-child(4),
.heart span:nth-child(6) {
    --c: dodgerblue;
}

.heart span:nth-child(5) {
    --c: mediumpurple;
}

為豎條紋設置高度,組成心形圖案:

.heart span {
    height: var(--h);
    position: relative;
    top: var(--t);
}

.heart span:nth-child(1),
.heart span:nth-child(9) {
    --h: 3em;
    --t: 2.2em;
}

.heart span:nth-child(2),
.heart span:nth-child(8) {
    --h: 6em;
    --t: 0.6em;
}

.heart span:nth-child(3),
.heart span:nth-child(7) {
    --h: 8em;
    --t: 0;
}

.heart span:nth-child(4),
.heart span:nth-child(6) {
    --h: 9em;
    --t: 0.8em;
}

.heart span:nth-child(5) {
    --h: 9.4em;
    --t: 1.6em;
}

設置位移動畫效果:

.heart span {
    animation: beating 5s infinite;
}

@keyframes beating{
    0%, 30% {
        top: var(--t);
        height: var(--h);
    }

    60%, 70% {
        top: 25%;
        height: 50%;
    }
}

最后,為動畫過程中的條紋設置去色、模糊和變窄效果,加強與彩色條紋的差異對比:

@keyframes beating{
    0%, 30% {
        background-color: var(--c);
        filter: blur(0);
        width: 1em;
    }

    60%, 70% {
        background-color: lightblue;
        filter: blur(5px);
        width: 0.1em;
    }
}

大功告成!

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/113402.html

相關文章

  • 前端每日實戰39# 視頻演示何用 CSS 創作一個表達懷念童年條紋彩虹特效

    摘要:效果預覽按下右側的點擊預覽按鈕可以在當前頁面預覽,點擊鏈接可以全屏預覽。可交互視頻教程此視頻是可以交互的,你可以隨時暫停視頻,編輯視頻中的代碼。 showImg(https://segmentfault.com/img/bVbbDbK?w=500&h=500); 效果預覽 按下右側的點擊預覽按鈕可以在當前頁面預覽,點擊鏈接可以全屏預覽。 https://codepen.io/comeh...

    LeoHsiun 評論0 收藏0
  • 前端每日實戰 2018 年 6 月份項目匯總(共 27 個項目)

    摘要:過往項目年月份項目匯總共個項目年月份項目匯總共個項目年月份發布的項目前端每日實戰專欄每天分解一個前端項目,用視頻記錄編碼過程,再配合詳細的代碼解讀,是學習前端開發的活的參考書視頻演示如何用純創作一個表達懷念童年心情的條紋彩虹心特效視頻演示如 過往項目 2018 年 5 月份項目匯總(共 30 個項目) 2018 年 4 月份項目匯總(共 8 個項目) 2018 年 6 月份發布的項目 ...

    jokester 評論0 收藏0
  • 前端每日實戰 2018 年 6 月份項目匯總(共 27 個項目)

    摘要:過往項目年月份項目匯總共個項目年月份項目匯總共個項目年月份發布的項目前端每日實戰專欄每天分解一個前端項目,用視頻記錄編碼過程,再配合詳細的代碼解讀,是學習前端開發的活的參考書視頻演示如何用純創作一個表達懷念童年心情的條紋彩虹心特效視頻演示如 過往項目 2018 年 5 月份項目匯總(共 30 個項目) 2018 年 4 月份項目匯總(共 8 個項目) 2018 年 6 月份發布的項目 ...

    dingding199389 評論0 收藏0

發表評論

0條評論

陸斌

|高級講師

TA的文章

閱讀更多
最新活動
閱讀需要支付1元查看
<