最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當(dāng)前位置: 首頁 - 科技 - 知識百科 - 正文

如何使用純CSS實(shí)現(xiàn)一臺咖啡機(jī)的效果

來源:懂視網(wǎng) 責(zé)編:小采 時(shí)間:2020-11-27 18:47:53
文檔

如何使用純CSS實(shí)現(xiàn)一臺咖啡機(jī)的效果

如何使用純CSS實(shí)現(xiàn)一臺咖啡機(jī)的效果:這篇文章主要介紹了關(guān)于如何使用純CSS實(shí)現(xiàn)一臺咖啡機(jī)的效果,有著一定的參考價(jià)值,現(xiàn)在分享給大家,有需要的朋友可以參考一下源代碼下載每日前端實(shí)戰(zhàn)系列的全部源代碼請從 github 下載:https://github.com/comehope/front-end-daily-cha
推薦度:
導(dǎo)讀如何使用純CSS實(shí)現(xiàn)一臺咖啡機(jī)的效果:這篇文章主要介紹了關(guān)于如何使用純CSS實(shí)現(xiàn)一臺咖啡機(jī)的效果,有著一定的參考價(jià)值,現(xiàn)在分享給大家,有需要的朋友可以參考一下源代碼下載每日前端實(shí)戰(zhàn)系列的全部源代碼請從 github 下載:https://github.com/comehope/front-end-daily-cha
這篇文章主要介紹了關(guān)于如何使用純CSS實(shí)現(xiàn)一臺咖啡機(jī)的效果,有著一定的參考價(jià)值,現(xiàn)在分享給大家,有需要的朋友可以參考一下

3249943501-5b380236e0516_articlex[1].png

源代碼下載

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

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

代碼解讀

定義 dom,容器中包含機(jī)體、出水口、咖啡杯、按鈕和咖啡:

<p class="coffee-machine">
 <span class="body"></span>
 <span class="spout"></span>
 <span class="cup"></span>
 <span class="button"></span>
 <span class="coffee"></span>
</p>

居中顯示:

body {
 margin: 0;
 height: 100vh;
 display: flex;
 align-items: center;
 justify-content: center;
 background: linear-gradient(to right bottom, sandybrown, darkred);
}

定義容器尺寸:

.coffee-machine {
 width: 15em;
 height: 15em;
 background-color: white;
 font-size: 20px;
 border-radius: 50%;
 border: 2em solid white;
}

畫出機(jī)體的外框:

.coffee-machine {
 position: relative;
 display: flex;
 justify-content: center;
}

.body {
 position: absolute;
 width: 8em;
 height: 12em;
 background-color: sandybrown;
 border-radius: 1.2em;
 top: 1.5em;
 border-right: 0.6em solid peru;
}

用偽元素畫出機(jī)體的中間部分:

.body::after {
 content: '';
 position: absolute;
 width: 8em;
 height: 8em;
 background-color: darkslategray;
 top: 2em;
 border-right: 0.6em solid black;
}

畫出出水口:

.spout {
 position: absolute;
 width: 3em;
 height: 1em;
 background-color: white;
 top: 3.5em;
 border-radius: 0.5em;
 border-right: 0.5em solid silver;
}

畫出咖啡杯的杯體:

.cup {
 position: absolute;
 width: 3em;
 height: 2em;
 background-color: white;
 bottom: 3.5em;
 border-radius: 0 0 1.4em 1.4em;
 border-right: 0.5em solid silver;
}

用偽元素畫出咖啡杯的把手:

.cup::after {
 content: '';
 position: absolute;
 width: 0.6em;
 height: 0.6em;
 border: 0.3em solid silver;
 border-radius: 50%;
 right: -1.2em;
 top: 0.2em;
}

畫出按鈕:

.button {
 position: absolute;
 width: 1.2em;
 height: 1.2em;
 background-color: tomato;
 border-radius: 50%;
 bottom: 2em;
 right: 4.5em;
}

畫出咖啡:

.coffee::before,
.coffee::after {
 content: '';
 position: absolute;
 width: 0.7em;
 height: 5em;
 background-color: chocolate;
 top: 4.5em;
 left: calc((15em - 0.7em) / 2);
}

接下來潤色一下。

為咖啡機(jī)增加光影:

.coffee-machine {
 z-index: 1;
}

.coffee-machine::before,
.coffee-machine::after {
 content: '';
 position: absolute;
 width: 2em;
 height: 2em;
 border: 0.3em solid transparent;
 z-index: 2;
 border-radius: 50%;
 border-left-color: white;
 left: 3.8em;
}

.coffee-machine::before {
 top: 1.8em;
 transform: rotate(40deg);
}

.coffee-machine::after {
 bottom: 1.8em;
 transform: rotate(-40deg);
}

定義咖啡流動的前半段動畫,即咖啡從出水口流到杯中:

.coffee::before {
 animation: 2s linear infinite;
 animation-name: pouring-before;
 transform-origin: top;
}

@keyframes pouring-before {
 0%, 20% {
 transform: scaleY(0);
 }

 30%, 100% {
 transform: scaleY(1);
 }

 70%, 100% {
 visibility: hidden;
 }
}

定義咖啡流動的后半段動畫,即出水口停止流出咖啡,剩余咖啡流到杯中:

.coffee::after {
 animation: 2s linear infinite;
 animation-name: pouring-after;
 transform-origin: bottom;
}

@keyframes pouring-after {
 0%, 70% {
 visibility: hidden;
 transform: scaleY(1);
 }

 80%, 100% {
 transform: scaleY(0);
 }
}

大功告成!

聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

如何使用純CSS實(shí)現(xiàn)一臺咖啡機(jī)的效果

如何使用純CSS實(shí)現(xiàn)一臺咖啡機(jī)的效果:這篇文章主要介紹了關(guān)于如何使用純CSS實(shí)現(xiàn)一臺咖啡機(jī)的效果,有著一定的參考價(jià)值,現(xiàn)在分享給大家,有需要的朋友可以參考一下源代碼下載每日前端實(shí)戰(zhàn)系列的全部源代碼請從 github 下載:https://github.com/comehope/front-end-daily-cha
推薦度:
標(biāo)簽: 咖啡 實(shí)現(xiàn) 效果
  • 熱門焦點(diǎn)

最新推薦

猜你喜歡

熱門推薦

專題
Top