摘要:效果預(yù)覽按下右側(cè)的點(diǎn)擊預(yù)覽按鈕可以在當(dāng)前頁(yè)面預(yù)覽,點(diǎn)擊鏈接可以全屏預(yù)覽??山换ヒ曨l此視頻是可以交互的,你可以隨時(shí)暫停視頻,編輯視頻中的代碼。隱藏容器外的內(nèi)容,并刪掉輔助線最后,裝飾一下頁(yè)面的角落大功告成
效果預(yù)覽
按下右側(cè)的“點(diǎn)擊預(yù)覽”按鈕可以在當(dāng)前頁(yè)面預(yù)覽,點(diǎn)擊鏈接可以全屏預(yù)覽。
https://codepen.io/comehope/pen/eLMKJG
可交互視頻此視頻是可以交互的,你可以隨時(shí)暫停視頻,編輯視頻中的代碼。
請(qǐng)用 chrome, safari, edge 打開觀看。
https://scrimba.com/p/pEgDAM/cdDRmH9
源代碼下載每日前端實(shí)戰(zhàn)系列的全部源代碼請(qǐng)從 github 下載:
https://github.com/comehope/front-end-daily-challenges
代碼解讀定義 dom,容器中包含 10 個(gè) div 子元素,每個(gè) div 中包含 1 個(gè) span 元素:
居中顯示:
body { margin: 0; height: 100vh; display: flex; align-items: center; justify-content: center; background-color: lightyellow; }
定義容器的尺寸和樣式:
.container { width: 400px; height: 400px; background: linear-gradient(45deg, tomato, gold); border-radius: 3%; box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); }
畫出容器里的 1 個(gè)元素,它有一個(gè)外殼 div,里面是一個(gè)白色的小方塊 span:
.container { position: relative; } .container div { position: absolute; width: inherit; height: inherit; display: flex; align-items: center; justify-content: center; } .container div span { position: absolute; width: 40px; height: 40px; background-color: white; }
為容器中的元素定義下標(biāo)變量,并讓元素的外殼依次旋轉(zhuǎn),圍合成一個(gè)圓形,其中 outline 是輔助線:
.container div { outline: 1px dashed black; transform: rotate(calc((var(--n) - 1) * 36deg)); } .container div:nth-child(1) { --n: 1; } .container div:nth-child(2) { --n: 2; } .container div:nth-child(3) { --n: 3; } .container div:nth-child(4) { --n: 4; } .container div:nth-child(5) { --n: 5; } .container div:nth-child(6) { --n: 6; } .container div:nth-child(7) { --n: 7; } .container div:nth-child(8) { --n: 8; } .container div:nth-child(9) { --n: 9; } .container div:nth-child(10) { --n: 10; }
至此,子元素繪制完成,接下來(lái)開始寫動(dòng)畫腳本。
引入 GSAP 庫(kù):
定義一個(gè)變量,代表子元素選擇器:
let elements = ".container div span";
聲明一個(gè)時(shí)間線對(duì)象:
let animation = new TimelineMax();
先設(shè)定入場(chǎng)方式為由小(第1幀)變大(第2幀),其中并沒(méi)有第 2 幀的代碼,它是隱含在語(yǔ)義中的:
animation.from(elements, 1, {scale: 0});
讓子元素變成豎長(zhǎng)條,向四周散開(第3幀):
animation.from(elements, 1, {scale: 0}) .to(elements, 1, {y: "-100px", scaleX: 0.25});
讓豎長(zhǎng)條旋轉(zhuǎn)著變成小方塊(第4幀):
animation.from(elements, 1, {scale: 0}) .to(elements, 1, {y: "-100px", scaleX: 0.25}) .to(elements, 1, {scaleY: 0.25, rotation: 180});
讓小方塊變成橫長(zhǎng)條,圍成一個(gè)圓形(第5幀):
animation.from(elements, 1, {scale: 0}) .to(elements, 1, {y: "-100px", scaleX: 0.25}) .to(elements, 1, {scaleY: 0.25, rotation: 180}) .to(elements, 1, {scaleX: 1});
注意,因 scrimba 在錄制過(guò)多幀時(shí)會(huì)崩潰,所以第 6 幀至第 11 幀沒(méi)有在視頻中體現(xiàn)。
讓圓形向內(nèi)收斂,同時(shí)線條變細(xì)(第6幀):
animation.from(elements, 1, {scale: 0}) .to(elements, 1, {y: "-100px", scaleX: 0.25}) .to(elements, 1, {scaleY: 0.25, rotation: 180}) .to(elements, 1, {scaleX: 1}) .to(elements, 1, {y: "-60px", scaleY: 0.1});
讓線條向左擺動(dòng)(第7幀):
animation.from(elements, 1, {scale: 0}) .to(elements, 1, {y: "-100px", scaleX: 0.25}) .to(elements, 1, {scaleY: 0.25, rotation: 180}) .to(elements, 1, {scaleX: 1}) .to(elements, 1, {y: "-60px", scaleY: 0.1}) .to(elements, 1, {x: "-30px"});
再讓線條向右擺動(dòng)(第8幀):
animation.from(elements, 1, {scale: 0}) .to(elements, 1, {y: "-100px", scaleX: 0.25}) .to(elements, 1, {scaleY: 0.25, rotation: 180}) .to(elements, 1, {scaleX: 1}) .to(elements, 1, {y: "-60px", scaleY: 0.1}) .to(elements, 1, {x: "-30px"}) .to(elements, 1, {x: "30px"});
再把橫線變?yōu)樨Q線,造型與第 3 幀相似,只是線更細(xì),更向內(nèi)收斂(第9幀):
animation.from(elements, 1, {scale: 0}) .to(elements, 1, {y: "-100px", scaleX: 0.25}) .to(elements, 1, {scaleY: 0.25, rotation: 180}) .to(elements, 1, {scaleX: 1}) .to(elements, 1, {y: "-60px", scaleY: 0.1}) .to(elements, 1, {x: "-30px"}) .to(elements, 1, {x: "30px"}) .to(elements, 1, {x: "0", scaleX: 0.1, scaleY: 1});
再把豎線變?yōu)闄M線,造型與第 5 幀相似,但線短一些(第10幀):
animation.from(elements, 1, {scale: 0}) .to(elements, 1, {y: "-100px", scaleX: 0.25}) .to(elements, 1, {scaleY: 0.25, rotation: 180}) .to(elements, 1, {scaleX: 1}) .to(elements, 1, {y: "-60px", scaleY: 0.1}) .to(elements, 1, {x: "-30px"}) .to(elements, 1, {x: "30px"}) .to(elements, 1, {x: "0", scaleX: 0.1, scaleY: 1}) .to(elements, 1, {scaleX: 0.5, scaleY: 0.1})
橫線稍向外擴(kuò)散,變?yōu)閳A點(diǎn)(第11幀):
animation.from(elements, 1, {scale: 0}) .to(elements, 1, {y: "-100px", scaleX: 0.25}) .to(elements, 1, {scaleY: 0.25, rotation: 180}) .to(elements, 1, {scaleX: 1}) .to(elements, 1, {y: "-60px", scaleY: 0.1}) .to(elements, 1, {x: "-30px"}) .to(elements, 1, {x: "30px"}) .to(elements, 1, {x: "0", scaleX: 0.1, scaleY: 1}) .to(elements, 1, {scaleX: 0.5, scaleY: 0.1}) .to(elements, 1, {y: "-80px", scaleY: 0.5, borderRadius: "50%"});
讓圓點(diǎn)變形為豎線,并向內(nèi)收縮,這個(gè)變化的距離長(zhǎng),所以動(dòng)畫時(shí)間也要長(zhǎng)一些(第12幀):
animation.from(elements, 1, {scale: 0}) .to(elements, 1, {y: "-100px", scaleX: 0.25}) .to(elements, 1, {scaleY: 0.25, rotation: 180}) .to(elements, 1, {scaleX: 1}) .to(elements, 1, {y: "-60px", scaleY: 0.1}) .to(elements, 1, {x: "-30px"}) .to(elements, 1, {x: "30px"}) .to(elements, 1, {x: "0", scaleX: 0.1, scaleY: 1}) .to(elements, 1, {scaleX: 0.5, scaleY: 0.1}) .to(elements, 1, {y: "-80px", scaleY: 0.5, borderRadius: "50%"}) .to(elements, 1, {y: "-10px", scaleX: 0.1, scaleY: 0.5, borderRadius: "0%", rotation: 0});
讓豎線從中心向外快速擴(kuò)散,擴(kuò)散前稍停片刻,好像線條都被發(fā)射出一樣(第13幀):
animation.from(elements, 1, {scale: 0}) .to(elements, 1, {y: "-100px", scaleX: 0.25}) .to(elements, 1, {scaleY: 0.25, rotation: 180}) .to(elements, 1, {scaleX: 1}) .to(elements, 1, {y: "-60px", scaleY: 0.1}) .to(elements, 1, {x: "-30px"}) .to(elements, 1, {x: "30px"}) .to(elements, 1, {x: "0", scaleX: 0.1, scaleY: 1}) .to(elements, 1, {scaleX: 0.5, scaleY: 0.1}) .to(elements, 1, {y: "-80px", scaleY: 0.5, borderRadius: "50%"}) .to(elements, 1, {y: "-10px", scaleX: 0.1, scaleY: 0.5, borderRadius: "0%", rotation: 0}) .to(elements, 1, {y: "-300px", delay: 0.5});
用時(shí)間尺度縮放函數(shù)讓動(dòng)畫播放速度加快一倍:
animation.from(elements, 1, {scale: 0}) .to(elements, 1, {y: "-100px", scaleX: 0.25}) .to(elements, 1, {scaleY: 0.25, rotation: 180}) .to(elements, 1, {scaleX: 1}) .to(elements, 1, {y: "-60px", scaleY: 0.1}) .to(elements, 1, {x: "-30px"}) .to(elements, 1, {x: "30px"}) .to(elements, 1, {x: "0", scaleX: 0.1, scaleY: 1}) .to(elements, 1, {scaleX: 0.5, scaleY: 0.1}) .to(elements, 1, {y: "-80px", scaleY: 0.5, borderRadius: "50%"}) .to(elements, 1, {y: "-10px", scaleX: 0.1, scaleY: 0.5, borderRadius: "0%", rotation: 0}) .to(elements, 1, {y: "-300px", delay: 0.5}) .timeScale(2);
修改聲明時(shí)間線的代碼,使動(dòng)畫重復(fù)播放:
let animation = new TimelineMax({repeat: -1, repeatDelay: 1});
至此,動(dòng)畫完成。
隱藏容器外的內(nèi)容,并刪掉輔助線;
.container { overflow: hidden; } .container div { /* outline: 1px dashed black; */ }
最后,裝飾一下頁(yè)面的角落:
body { overflow: hidden; } body::before, body::after { content: ""; position: absolute; width: 60vmin; height: 60vmin; border-radius: 50%; background: radial-gradient( transparent 25%, gold 25%, gold 50%, tomato 50% ); } body::before { left: -30vmin; bottom: -30vmin; } body::after { right: -30vmin; top: -30vmin; }
大功告成!
文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請(qǐng)注明本文地址:http://systransis.cn/yun/97681.html
摘要:過(guò)往項(xiàng)目年月份項(xiàng)目匯總共個(gè)項(xiàng)目年月份項(xiàng)目匯總共個(gè)項(xiàng)目年月份項(xiàng)目匯總共個(gè)項(xiàng)目年月份項(xiàng)目匯總共個(gè)項(xiàng)目年月份項(xiàng)目匯總共個(gè)項(xiàng)目年月份發(fā)布的項(xiàng)目前端每日實(shí)戰(zhàn)專欄每天分解一個(gè)前端項(xiàng)目,用視頻記錄編碼過(guò)程,再配合詳細(xì)的代碼解讀,是學(xué)習(xí)前端開發(fā)的活的參考書 過(guò)往項(xiàng)目 2018 年 8 月份項(xiàng)目匯總(共 29 個(gè)項(xiàng)目) 2018 年 7 月份項(xiàng)目匯總(共 29 個(gè)項(xiàng)目) 2018 年 6 月份項(xiàng)目匯總(...
摘要:過(guò)往項(xiàng)目年月份項(xiàng)目匯總共個(gè)項(xiàng)目年月份項(xiàng)目匯總共個(gè)項(xiàng)目年月份項(xiàng)目匯總共個(gè)項(xiàng)目年月份項(xiàng)目匯總共個(gè)項(xiàng)目年月份項(xiàng)目匯總共個(gè)項(xiàng)目年月份發(fā)布的項(xiàng)目前端每日實(shí)戰(zhàn)專欄每天分解一個(gè)前端項(xiàng)目,用視頻記錄編碼過(guò)程,再配合詳細(xì)的代碼解讀,是學(xué)習(xí)前端開發(fā)的活的參考書 過(guò)往項(xiàng)目 2018 年 8 月份項(xiàng)目匯總(共 29 個(gè)項(xiàng)目) 2018 年 7 月份項(xiàng)目匯總(共 29 個(gè)項(xiàng)目) 2018 年 6 月份項(xiàng)目匯總(...
摘要:效果預(yù)覽按下右側(cè)的點(diǎn)擊預(yù)覽按鈕可以在當(dāng)前頁(yè)面預(yù)覽,點(diǎn)擊鏈接可以全屏預(yù)覽??山换ヒ曨l此視頻是可以交互的,你可以隨時(shí)暫停視頻,編輯視頻中的代碼。隱藏容器外的內(nèi)容,并刪掉輔助線最后,裝飾一下頁(yè)面的角落大功告成 showImg(https://segmentfault.com/img/bVbgOQt?w=400&h=302); 效果預(yù)覽 按下右側(cè)的點(diǎn)擊預(yù)覽按鈕可以在當(dāng)前頁(yè)面預(yù)覽,點(diǎn)擊鏈接可以全...
閱讀 3233·2021-11-11 16:55
閱讀 2498·2021-10-13 09:39
閱讀 2427·2021-09-13 10:27
閱讀 2164·2019-08-30 15:55
閱讀 3093·2019-08-30 15:54
閱讀 3137·2019-08-29 16:34
閱讀 1829·2019-08-29 12:41
閱讀 1073·2019-08-29 11:33