如何用純 CSS 創作一張 iPhone 價格資訊圖
阿新 • • 發佈:2018-12-11
效果預覽
線上演示按下右側的“點選預覽”按鈕可以在當前頁面預覽,點選連結可以全屏預覽。
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
中都包含一個無序列表,背景牆展示價格,側邊牆展示名稱:
<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);
}
定義容器尺寸:
.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;
}
大功告成!
原文地址:https://segmentfault.com/a/1190000016456282