按下右側的「點擊預覽」按鈕能夠在當前頁面預覽,點擊連接能夠全屏預覽。css
https://codepen.io/comehope/pen/OorLGZhtml
此視頻是能夠交互的,你能夠隨時暫停視頻,編輯視頻中的代碼。前端
請用 chrome, safari, edge 打開觀看。git
https://scrimba.com/p/pEgDAM/cRB22cVgithub
每日前端實戰系列的所有源代碼請從 github 下載:chrome
https://github.com/comehope/front-end-daily-challengesdom
定義 dom,容器中包含 3 個元素,h1
是圖表標題,.back
表示背景牆,.side
表示側邊牆,.back
和 .side
中都包含一個無序列表,背景牆展現價格,側邊牆展現名稱:ide
<div class="wall"> <h1>iPhone Price Comparison</h1> <div class="back"> <ul> <li class="xs-max"><span>$1099 ~ $1449</span></li> <li class="xs"><span>$999 ~ $1349</span></li> <li class="xr"><span>$749 ~ $899</span></li> <li class="x"><span>$999 ~ $1149</span></li> </ul> </div> <div class="side"> <ul> <li class="xs-max">iPhone XS Max</li> <li class="xs">iPhone XS</li> <li class="xr">iPhone XR</li> <li class="x">iPhone X</li> </ul> </div> </div>
居中顯示:佈局
body { margin: 0; height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(lightblue, skyblue); }
定義容器尺寸:flex
.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, #ddd ); } .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, #ddd, #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; }
大功告成!