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

資訊專欄INFORMATION COLUMN

前端每日實戰(zhàn):150# 視頻演示如何用 CSS 和 D3 創(chuàng)作一個集體舞動畫

tabalt / 3374人閱讀

摘要:接下來用批量增加的元素。引入庫聲明一個常量,表示網格的邊長刪除掉文件中的子元素,改為用動態(tài)創(chuàng)建繼續(xù)用連綴語法增加子元素刪除掉文件中的變量聲明,改為用動態(tài)聲明略最后,把邊長改為,即讓個一起動畫大功告成

效果預覽

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

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

可交互視頻

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

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

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

源代碼下載

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

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

代碼解讀

定義 dom,容器中包含 1 個 .square 子容器,子容器中包含 4 個 ,每個 代表一個對角扇形:

居中顯示:

body {
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #222;
}

設置容器的尺寸單位,1em 等于 8px

.container {
    font-size: 8px;
}

子容器中的 4 個 不設寬高,只設邊框,其中第 1 個和第 4 個 只取左右邊框,第 2 個和第 3 個 只取上下邊框:

.square span {
    display: block;
    border: 2.5em solid transparent;
    color: #ffffd;
}

.square span:nth-child(1),
.square span:nth-child(4) {
    border-left-color: currentColor;
    border-right-color: currentColor;
}

.square span:nth-child(2),
.square span:nth-child(3) {
    border-top-color: currentColor;
    border-bottom-color: currentColor;
}

把邊框改為圓弧:

.square span {
    border-radius: 50%;
}

在子容器中用 grid 布局把 4 個 設置為 2 * 2 的網格:

.square {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.2em;
    padding: 0.1em;
}

旋轉 4 個 ,使它們圍合成一個正方形,看起來像一個花朵,算式的結果是 45 度,寫成這樣是為了和接下來的動畫的算式的形式保持一致:

.square span {
    transform: rotate(calc(45deg + 90deg * 0));
}

增加讓 旋轉的動畫,整個動畫過程旋轉 4 次,每次旋轉 90 度,4 次旋轉之后即返回原位:

.square span {
    animation: rotation 2s ease-in-out infinite;
}

@keyframes rotation {
    0% { transform: rotate(calc(45deg + 90deg * 0)); }
    25% { transform: rotate(calc(45deg + 90deg * 1)); }
    50% { transform: rotate(calc(45deg + 90deg * 2)); }
    75% { transform: rotate(calc(45deg + 90deg * 3)); }
    100% { transform: rotate(calc(45deg + 90deg * 4)); }
}

使其中 2 個 朝相反的方向運動:

.square span:nth-child(2),
.square span:nth-child(3) {
    animation-direction: reverse;
}

至此,一個 .square 子容器的動畫已經完成,接下來制作 4 個 .square 的動畫。
在 dom 中再增加 3 組 .square 子容器:

用 grid 布局把 4 個 .square 布局成網格狀,變量 --columns 是網格的邊長,即每邊有 2 個 .square 子容器:

.container {
    display: grid;
    --columns: 2;
    grid-template-columns: repeat(var(--columns), 1fr);
}

現在看起來好像是有幾個黑色的小方塊在不停地移動,當 dom 元素越多時,動畫效果看起來就越壯觀,就像集體舞一樣,人越多越有氣勢。接下來用 d3 批量增加 dom 的元素。
引入 d3 庫:

聲明一個 COLUMNS 常量,表示網格的邊長:

const COLUMNS = 2;

刪除掉 html 文件中的 .square 子元素,改為用 d3 動態(tài)創(chuàng)建:

d3.select(".container")
    .selectAll("div")
    .data(d3.range(COLUMNS * COLUMNS))
    .enter()
    .append("div")
    .attr("class", "square");

繼續(xù)用連綴語法增加 子元素:

d3.select(".container")
    .selectAll("div")
    .data(d3.range(COLUMNS * COLUMNS))
    .enter()
    .append("div")
    .attr("class", "square")
    .selectAll("span")
    .data(d3.range(4))
    .enter()
    .append("span");

刪除掉 css 文件中的 --columns 變量聲明,改為用 d3 動態(tài)聲明:

d3.select(".container")
    .style("--columns", COLUMNS)
    /*略*/

最后,把邊長改為 4,即讓 16 個 .square 一起動畫:

const COLUMNS = 4;

大功告成!

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

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

相關文章

  • 前端每日實戰(zhàn)150# 視頻演示何用 CSS D3 創(chuàng)作一個體舞動畫

    摘要:接下來用批量增加的元素。引入庫聲明一個常量,表示網格的邊長刪除掉文件中的子元素,改為用動態(tài)創(chuàng)建繼續(xù)用連綴語法增加子元素刪除掉文件中的變量聲明,改為用動態(tài)聲明略最后,把邊長改為,即讓個一起動畫大功告成 showImg(https://segmentfault.com/img/bVbhJZg?w=400&h=301); 效果預覽 按下右側的點擊預覽按鈕可以在當前頁面預覽,點擊鏈接可以全屏預...

    AlphaWatch 評論0 收藏0
  • 前端每日實戰(zhàn) 2018年10月至2019年6月項目匯總(共 20 個項目)

    摘要:過往項目年月份項目匯總共個項目年月份項目匯總共個項目年月份項目匯總共個項目年月份項目匯總共個項目年月份項目匯總共個項目年月份項目匯總共個項目年月至年月發(fā)布的項目前端每日實戰(zhàn)專欄每天分解一個前端項目,用視頻記錄編碼過程,再配合詳細的代碼解讀, 過往項目 2018 年 9 月份項目匯總(共 26 個項目) 2018 年 8 月份項目匯總(共 29 個項目) 2018 年 7 月份項目匯總(...

    muddyway 評論0 收藏0
  • 前端每日實戰(zhàn) 2018 年 9 月份項目匯總(共 26 個項目)

    摘要:過往項目年月份項目匯總共個項目年月份項目匯總共個項目年月份項目匯總共個項目年月份項目匯總共個項目年月份項目匯總共個項目年月份發(fā)布的項目前端每日實戰(zhàn)專欄每天分解一個前端項目,用視頻記錄編碼過程,再配合詳細的代碼解讀,是學習前端開發(fā)的活的參考書 過往項目 2018 年 8 月份項目匯總(共 29 個項目) 2018 年 7 月份項目匯總(共 29 個項目) 2018 年 6 月份項目匯總(...

    lavnFan 評論0 收藏0

發(fā)表評論

0條評論

tabalt

|高級講師

TA的文章

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