摘要:效果預覽按下右側的點擊預覽按鈕可以在當前頁面預覽,點擊鏈接可以全屏預覽。可交互視頻此視頻是可以交互的,你可以隨時暫停視頻,編輯視頻中的代碼。接下來設置左側背景墻的橫條樣式。
效果預覽
按下右側的“點擊預覽”按鈕可以在當前頁面預覽,點擊鏈接可以全屏預覽。
https://codepen.io/comehope/pen/OorLGZ
可交互視頻此視頻是可以交互的,你可以隨時暫停視頻,編輯視頻中的代碼。
請用 chrome, safari, edge 打開觀看。
https://scrimba.com/p/pEgDAM/cRB22cV
源代碼下載每日前端實戰系列的全部源代碼請從 github 下載:
https://github.com/comehope/front-end-daily-challenges
代碼解讀定義 dom,容器中包含 3 個元素,h1 是圖表標題,.back 表示背景墻,.side 表示側邊墻,.back 和 .side 中都包含一個無序列表,背景墻展示價格,側邊墻展示名稱:
iPhone Price Comparison
- $1099 ~ $1449
- $999 ~ $1349
- $749 ~ $899
- $999 ~ $1149
- iPhone XS Max
- iPhone XS
- iPhone XR
- iPhone X
居中顯示:
body { margin: 0; height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(lightblue, skyblue); }
定義容器尺寸:
.wall { width: 60em; height: 40em; border: 1em solid rgba(255, 255, 255, 0.5); border-radius: 2em; font-size: 10px; }
用 grid 布局,把容器分成 2 部分,左側80%為背景墻,右側20%為側邊墻:
.wall { display: grid; grid-template-columns: 0 4fr 1fr; }
分別設置背景墻和側邊墻的背景色:
.back { background: linear-gradient( to right, #555, #ffffd ); } .side { background: radial-gradient( at 0% 50%, /* tomato 25%, yellow 90% */ rgba(0, 0, 0, 0.2) 25%, rgba(0, 0, 0, 0) 90% ), linear-gradient( to right, #ffffd, #ccc ) }
用 flex 布局設置對齊方式,列表垂直居中:
.back, .side { display: flex; align-items: center; } .back { justify-content: flex-end; } ul { list-style-type: none; padding: 0; }
設置標題樣式:
h1 { position: relative; width: 20em; margin: 1em; color: white; font-family: sans-serif; }
設置列表項的高度和顏色:
.back ul { width: 75%; } .side ul { width: 100%; } ul li { height: 5em; background-color: var(--c); } ul li:nth-child(1) { --c: tomato; } ul li:nth-child(2) { --c: coral; } ul li:nth-child(3) { --c: lightsalmon; } ul li:nth-child(4) { --c: deepskyblue; }
至此,整體布局完成。接下來設置左側背景墻的橫條樣式。
橫條的寬度根據與商品的上限售價 --high-price 成正比,以最貴的售價 --max-price 作為全長,其他橫條的寬度為上限售價與最高售價的百分比:
ul { display: flex; flex-direction: column; } .back ul { align-items: flex-end; } ul { --max-price: 1449; } ul li.xs-max { --high-price: 1449; } ul li.xs { --high-price: 1349; } ul li.xr { --high-price: 899; } ul li.x { --high-price: 1149; } .back ul li { width: calc(var(--high-price) / var(--max-price) * 100%); }
在橫條中區分起售價 --low-price 的位置,比起售價高的區域填充更深的顏色:
ul li.xs-max { --low-price: 1099; --c2: orangered; } ul li.xs { --low-price: 999; --c2: tomato; } ul li.xr { --low-price: 749; --c2: coral; } ul li.x { --low-price: 999; --c2: dodgerblue; } .back ul li { --percent: calc(var(--low-price) / var(--high-price) * 100%); background: linear-gradient( to left, var(--c) var(--percent), var(--c2) var(--percent) ); }
在橫線的頂端畫出一個向左的三角形:
.back ul li { position: relative; } .back ul li::before { content: ""; position: absolute; width: 0; height: 0; transform: translateX(-3em); border-right: 3em solid var(--c2); border-top: 2.5em solid transparent; border-bottom: 2.5em solid transparent; }
設置價格文字樣式:
.back ul li span { position: absolute; width: 95%; text-align: right; color: white; font-size: 1.25em; line-height: 4em; font-family: sans-serif; }
為各橫條增加陰影,增強立體感:
ul li.xs-max { z-index: 5; } ul li.xs { z-index: 4; } ul li.xr { z-index: 3; } ul li.x { z-index: 2; } .back ul li { filter: drop-shadow(0 1em 1em rgba(0, 0, 0, 0.3)); }
至此,背景墻的橫條完成。接下來設置側邊墻的樣式。
為了制造立體效果,需要設置側邊墻的景深,并使列表傾斜:
.side { perspective: 1000px; } .side ul { transform-origin: left; transform: rotateY(-75deg) scaleX(4); }
設置側邊墻的文字樣式:
.wall { overflow: hidden; } .side ul li { padding-right: 30%; text-align: right; color: white; font-family: sans-serif; line-height: 5em; }
至此,靜態視覺效果完成。最后增加入場動畫效果:
ul li { animation: show 1s linear forwards; transform-origin: right; transform: scaleX(0); } @keyframes show { to { transform: scaleX(1); } } .back ul li { animation-delay: 1s; }
大功告成!
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/116975.html
摘要:效果預覽按下右側的點擊預覽按鈕可以在當前頁面預覽,點擊鏈接可以全屏預覽。可交互視頻此視頻是可以交互的,你可以隨時暫停視頻,編輯視頻中的代碼。接下來設置左側背景墻的橫條樣式。 showImg(https://segmentfault.com/img/bVbhdbh?w=400&h=300); 效果預覽 按下右側的點擊預覽按鈕可以在當前頁面預覽,點擊鏈接可以全屏預覽。 https://co...
摘要:過往項目年月份項目匯總共個項目年月份項目匯總共個項目年月份項目匯總共個項目年月份項目匯總共個項目年月份項目匯總共個項目年月份發布的項目前端每日實戰專欄每天分解一個前端項目,用視頻記錄編碼過程,再配合詳細的代碼解讀,是學習前端開發的活的參考書 過往項目 2018 年 8 月份項目匯總(共 29 個項目) 2018 年 7 月份項目匯總(共 29 個項目) 2018 年 6 月份項目匯總(...
摘要:過往項目年月份項目匯總共個項目年月份項目匯總共個項目年月份項目匯總共個項目年月份項目匯總共個項目年月份項目匯總共個項目年月份發布的項目前端每日實戰專欄每天分解一個前端項目,用視頻記錄編碼過程,再配合詳細的代碼解讀,是學習前端開發的活的參考書 過往項目 2018 年 8 月份項目匯總(共 29 個項目) 2018 年 7 月份項目匯總(共 29 個項目) 2018 年 6 月份項目匯總(...
閱讀 2053·2021-10-08 10:04
閱讀 3078·2021-09-22 10:02
閱讀 2225·2019-08-30 15:56
閱讀 825·2019-08-30 15:54
閱讀 921·2019-08-30 15:54
閱讀 1275·2019-08-30 15:53
閱讀 2508·2019-08-30 11:21
閱讀 3556·2019-08-30 10:56