91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

用純CSS實現iPhone 價格信息圖的方法

發布時間:2020-09-14 13:58:30 來源:億速云 閱讀:156 作者:小新 欄目:web開發

這篇文章主要介紹了用純CSS實現iPhone 價格信息圖的方法,具有一定借鑒價值,需要的朋友可以參考下。希望大家閱讀完這篇文章后大有收獲。下面讓小編帶著大家一起了解一下。

效果預覽

用純CSS實現iPhone 價格信息圖的方法

源代碼下載

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

代碼解讀

定義 dom,容器中包含 3 個元素,h2 是圖表標題,.back 表示背景墻,.side 表示側邊墻,.back.side 中都包含一個無序列表,背景墻展示價格,側邊墻展示名稱:

<div class="wall">
    <h2>iPhone Price Comparison</h2>
    <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;
}

設置標題樣式:

h2 {
    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;
}

感謝你能夠認真閱讀完這篇文章,希望小編分享用純CSS實現iPhone 價格信息圖的方法內容對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,遇到問題就找億速云,詳細的解決方法等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

宜兰市| 中阳县| 岑溪市| 昭觉县| 西乡县| 崇义县| 阳城县| 淮阳县| 石景山区| 花垣县| 信阳市| 丘北县| 昭平县| 台北县| 定襄县| 东乡县| 德阳市| 麟游县| 会泽县| 巨鹿县| 东城区| 教育| 祥云县| 东安县| 安达市| 瓦房店市| 庐江县| 西乌珠穆沁旗| 客服| 南溪县| 海城市| 施秉县| 周宁县| 福贡县| 芜湖市| 新龙县| 宝应县| 师宗县| 成安县| 常熟市| 宜章县|