首頁 > web前端 > css教學 > 主體

如何使用純CSS實現一張紀念卓別林的卡片(附源碼)

不言
發布: 2018-10-25 13:46:22
轉載
1987 人瀏覽過

這篇文章帶給大家的內容是關於如何使用純CSS實現一張紀念卓別林的卡片(附源碼),有一定的參考價值,有需要的朋友可以參考一下,希望對你有所幫助。

效果預覽

如何使用純CSS實現一張紀念卓別林的卡片(附源碼)


#原始碼下載

https://github.com/comehop​​e /front-end-daily-challenges

程式碼解讀

定義dom,容器中包含的3 個元素分別代表帽子、鬍鬚和手杖:

<figure>
    <span></span>
    <span></span>
    <span></span>
</figure>
登入後複製

居中顯示:

body {
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
登入後複製

定義容器尺寸,並設定子元素水平居中:

.chaplin {
    width: 40em;
    height: 30em;
    font-size: 10px;
    background-color: #eee;
    box-shadow: 0 0 3em rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}
登入後複製

定義預設顏色,後面用currentColor 引用此顏色:

.chaplin {
    color: #555;
}
登入後複製

畫出帽子的輪廓:

.chaplin {
    position: relative;
}
.hat {
    position: absolute;
    width: 6.4em;
    height: 4.6em;
    background-color: currentColor;
    border-radius: 2.3em 2.3em 0 0;
    top: 1.4em;
}
登入後複製

用偽元素畫出帽緣:

.hat::before {
    content: '';
    position: absolute;
    width: 10em;
    height: 0.8em;
    background-color: currentColor;
    border-radius: 0.4em;
    top: calc(100% + 0.4em);
    left: calc((100% - 10em) / 2);
}
登入後複製

#畫出鬍子:

.beard {
    position: absolute;
    width: 1.5em;
    height: 0;
    top: 11.6em;
    border: solid transparent;
    border-width: 0 0.4em 1em 0.4em;
    border-bottom-color: currentColor;
}
登入後複製

畫出手杖的杖桿:

.stick {
    position: absolute;
    width: 0.8em;
    height: 10.5em;
    background-color: currentColor;
    bottom: 0;
}
登入後複製

::before 偽元素畫出手杖的握柄:

.stick::before {
    content: '';
    position: absolute;
    box-sizing: border-box;
    width: 5.6em;
    height: 3em;
    border: 0.8em solid;
    border-radius: 5.6em 5.6em 0 0;
    border-bottom: none;
    top: -3em;
}
登入後複製

::after 偽元素修飾握柄的端點,使其圓潤自然:

.stick::after {
    content: '';
    position: absolute;
    width: 0.8em;
    height: 0.8em;
    background-color: currentColor;
    border-radius: 50%;
    left: calc(5.6em - 0.8em);
    top: -0.4em;
}
登入後複製

使手杖水平居中:

.stick {
    left: calc((100% - (5.6em - 0.8em)) / 2);
}
登入後複製

至此,抽象的卓別林形象完成,接下來排版一句他的名言。
在dom 中增加一個.quote 元素,並把一句話分成3 段:

<figure>
    <span></span>
    <span></span>
    <span></span>
    <p>
        <span>a day without</span>
        <span>laughter</span>
        <span>is a day wasted</span>
    </p>
</figure>
登入後複製

定位文字,並且垂直排3 段文字:

.quote {
    position: absolute;
    left: 50%;
    bottom: 2.5em;
    font-family: sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    display: flex;
    flex-direction: column;
}
登入後複製

調整字號和字間距,使3 段文字對齊:

.quote span:nth-child(1) {
    letter-spacing: 0.05em;
}

.quote span:nth-child(2) {
    font-size: 1.6em;
}
登入後複製

大功告成!

以上是如何使用純CSS實現一張紀念卓別林的卡片(附源碼)的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:segmentfault.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板