摘要:效果預(yù)覽按下右側(cè)的點(diǎn)擊預(yù)覽按鈕可以在當(dāng)前頁面預(yù)覽,點(diǎn)擊鏈接可以全屏預(yù)覽。可交互視頻此視頻是可以交互的,你可以隨時(shí)暫停視頻,編輯視頻中的代碼。
效果預(yù)覽
按下右側(cè)的“點(diǎn)擊預(yù)覽”按鈕可以在當(dāng)前頁面預(yù)覽,點(diǎn)擊鏈接可以全屏預(yù)覽。
https://codepen.io/comehope/pen/GXyGpZ
可交互視頻此視頻是可以交互的,你可以隨時(shí)暫停視頻,編輯視頻中的代碼。
請(qǐng)用 chrome, safari, edge 打開觀看。
https://scrimba.com/p/pEgDAM/cwkQWtz
源代碼下載每日前端實(shí)戰(zhàn)系列的全部源代碼請(qǐng)從 github 下載:
https://github.com/comehope/front-end-daily-challenges
代碼解讀定義 dom,容器中包含 2 個(gè) .half 元素,各表示剪刀的半邊,它的子元素 handle 表示刀柄,blade 表示刀,最后的 .joint 表示連接左右兩部分鉚釘:
居中顯示:
body { margin: 0; height: 100vh; display: flex; align-items: center; justify-content: center; }
定義容器尺寸,其中 outline 是輔助線:
.scissors { width: 21em; height: 7em; outline: 1px dashed; }
定義半邊剪刀的尺寸,其中 outline 是輔助線:
.scissors { position: relative; } .half { position: absolute; width: inherit; height: 4em; outline: 1px dashed red; }
畫出刀柄:
.handle { position: absolute; box-sizing: border-box; width: 8em; height: inherit; border: 1em solid #333; border-radius: 2em; }
畫出刀,用圓角屬性畫出了頂部的刀尖:
.blade { position: absolute; width: 15em; height: 1em; background-color: silver; top: 3em; left: 6em; border-radius: 0 0 1em 0; z-index: -1; }
用偽元素在刀的底部畫一個(gè)三角形,使刀與刀柄連接得更牢固:
.blade::before { content: ""; position: absolute; border-style: solid; border-width: 0 1.8em 1em 1.8em; border-color: transparent transparent silver transparent; top: -1em; left: 0.2em; }
使半邊刀傾斜:
.half { transform-origin: 45% bottom; transform: rotate(15deg); }
利用 scale() 函數(shù)畫出剪刀的另一半:
.half { transform-origin: 45% bottom; transform: rotate(calc(15deg * var(--direction))) scaleY(var(--direction)); } .half:nth-child(1) { --direction: 1; top: 0; } .half:nth-child(2) { --direction: -1; top: -1em; }
畫出連接左右半邊的鉚釘:
.joint { position: absolute; width: 0.7em; height: 0.7em; background-color: #333; border-radius: 50%; top: calc(50% - 0.7em / 2); left: 45%; }
增加動(dòng)畫鼠標(biāo)懸停時(shí)的動(dòng)畫效果:
.scissors:hover .half { animation: cut 2s ease-out; } @keyframes cut { 20%, 60% { transform: rotate(calc(30deg * var(--direction))) scaleY(var(--direction)); } 40%, 80% { transform: rotate(calc(5deg * var(--direction))) scaleY(var(--direction)); } }
最后,別忘了刪掉輔助線。
大功告成!
文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請(qǐng)注明本文地址:http://systransis.cn/yun/54624.html
摘要:效果預(yù)覽按下右側(cè)的點(diǎn)擊預(yù)覽按鈕可以在當(dāng)前頁面預(yù)覽,點(diǎn)擊鏈接可以全屏預(yù)覽??山换ヒ曨l此視頻是可以交互的,你可以隨時(shí)暫停視頻,編輯視頻中的代碼。 showImg(https://segmentfault.com/img/bVbgGKo?w=400&h=299); 效果預(yù)覽 按下右側(cè)的點(diǎn)擊預(yù)覽按鈕可以在當(dāng)前頁面預(yù)覽,點(diǎn)擊鏈接可以全屏預(yù)覽。 https://codepen.io/comehop...
摘要:過往項(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)目,用視頻記錄編碼過程,再配合詳細(xì)的代碼解讀,是學(xué)習(xí)前端開發(fā)的活的參考書 過往項(xiàng)目 2018 年 8 月份項(xiàng)目匯總(共 29 個(gè)項(xiàng)目) 2018 年 7 月份項(xiàng)目匯總(共 29 個(gè)項(xiàng)目) 2018 年 6 月份項(xiàng)目匯總(...
摘要:過往項(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)目,用視頻記錄編碼過程,再配合詳細(xì)的代碼解讀,是學(xué)習(xí)前端開發(fā)的活的參考書 過往項(xiàng)目 2018 年 8 月份項(xiàng)目匯總(共 29 個(gè)項(xiàng)目) 2018 年 7 月份項(xiàng)目匯總(共 29 個(gè)項(xiàng)目) 2018 年 6 月份項(xiàng)目匯總(...
閱讀 708·2021-11-15 11:37
閱讀 3326·2021-10-27 14:14
閱讀 6121·2021-09-13 10:30
閱讀 2970·2021-09-04 16:48
閱讀 1940·2021-08-18 10:22
閱讀 2137·2019-08-30 14:19
閱讀 739·2019-08-30 10:54
閱讀 1756·2019-08-29 18:40