前端每日實戰:78# 視頻演示如何用純 CSS 創做 Windows 啓動界面

圖片描述

效果預覽

按下右側的「點擊預覽」按鈕能夠在當前頁面預覽,點擊連接能夠全屏預覽。css

https://codepen.io/comehope/pen/WKQdpxhtml

可交互視頻

此視頻是能夠交互的,你能夠隨時暫停視頻,編輯視頻中的代碼。前端

請用 chrome, safari, edge 打開觀看。git

https://scrimba.com/p/pEgDAM/cgzaEH9github

源代碼下載

每日前端實戰系列的所有源代碼請從 github 下載:chrome

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

代碼解讀

定義 dom,容器中包含 2 個元素,分別表明 logo 和進度條,logo 又包含 3 段文字:dom

<div class="windows-boot">
    <div class="logo">
        <p class="ms">Microsoft</p>
        <p class="win">Windows</p>
        <p class="pro">Professional</p>
    </div>
    <div class="bar"></div>
</div>

居中顯示:字體

body {
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
}

定義容器尺寸:flex

.windows-boot {
    width: 21.5em;
    height: 15em;
}

設置段落樣式:

.logo p {
    color: white;
    font-family: sans-serif;
    margin: 0;
    padding: 0;
}

設置字號:

.logo .ms {
    font-size: 1.6em;
}

.logo .win {
    font-size: 4.2em;
}

.logo .pro {
    font-size: 3em;
}

設置字體粗細:

.logo .ms {
    font-weight: lighter;
}

.logo .win {
    font-weight: bold;
}

.logo .pro {
    font-weight: lighter;
}

設置行高:

.logo .ms {
    line-height: 1em;
}

.logo .win {
    line-height: 86%;
}

.logo .pro {
    line-height: 1em;
    padding-left: 0.2em;
}

在 "Microsoft" 後面增長商標版權符號:

.logo .ms::after {
    content: '\00a9';
    font-size: 0.625em;
    vertical-align: top;
    position: relative;
    top: -0.3em;
    left: 0.2em;
}

在 "Windows" 後面增長 "xp":

.logo .win::after {
    content: 'XP';
    font-size: 0.5em;
    vertical-align: top;
    position: relative;
    top: -0.4em;
    color: tomato;
}

定義進度條尺寸:

.bar {
    width: 15em;
    height: 1em;
    border: 0.2em solid silver;
}

增長 logo 和進度條的間距:

.windows-xp-loader {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

設置進度條的樣式:

.bar {
    border-radius: 0.7em;
    position: relative;
    padding: 0.2em;
}

.bar::before {
    content: '';
    position: absolute;
    width: 3em;
    height: 70%;
    background-color: dodgerblue;
    border-radius: 0.2em;
}

用線性漸變設置進度條中藍色色塊的樣式:

.bar::before {
    background: 
        linear-gradient(
            to right,
            transparent 30%,
            black 30%, black 35%,
            transparent 35%, transparent 65%,
            black 65%, black 70%,
            transparent 70%
        ),
        linear-gradient(
            blue 0%,
            royalblue 17%,
            deepskyblue 32%, deepskyblue 45%,
            royalblue 60%,
            blue 100%
        );
    filter: brightness(1.2);
}

增長動畫效果:

.bar::before {
    animation: run 2s linear infinite;
}

@keyframes run {
    from {
        transform: translateX(-3em);
    }

    to {
        transform: translateX(15em);
    }
}

最後,隱藏進度條以外的內容:

.bar {
    overflow: hidden;
}

大功告成!

相關文章
相關標籤/搜索