溫馨提示×

溫馨提示×

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

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

使用CSS在線字體和D3實現(xiàn)Google信息圖的方法

發(fā)布時間:2020-09-14 15:02:23 來源:億速云 閱讀:166 作者:小新 欄目:web開發(fā)

小編給大家分享一下使用CSS在線字體和D3實現(xiàn)Google信息圖的方法,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!

效果預(yù)覽

使用CSS在線字體和D3實現(xiàn)Google信息圖的方法

源代碼下載

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

代碼解讀

定義 dom,只有 1 個空元素,其中不包含任何文本:

<div class="logo"></div>

引入字體文件,Product Sans 是 Google 專門為品牌推廣創(chuàng)建的無襯線字體:

@import url("https://fonts.googleapis.com/css?family=Product+Sans");

居中顯示:

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

用偽元素制作 logo,注意 content 的內(nèi)容不是 "Google",而是 "google_logo"

.logo::before {
    content: 'google_logo';
    font-size: 10vw;
}

設(shè)置字體,采用剛才引入的在線字體,剛才頁面上的 "google_logo" 文字被替換成了單色的 logo 圖案:

body {
    font-family: 'product sans';
}

定義顏色變量:

:root {
    --blue: #4285f4;
    --red: #ea4335;
    --yellow: #fbbc05;
    --green: #34a853;
}

設(shè)置文字遮罩效果,為文字上色:

.logo::before {
    background-image: linear-gradient(
        to right,
        var(--blue) 0%, var(--blue) 26.5%, 
        var(--red) 26.5%, var(--red) 43.5%, 
        var(--yellow) 43.5%, var(--yellow) 61.5%,
        var(--blue) 61.5%, var(--blue) 78.5%, 
        var(--green) 78.5%, var(--green) 84.5%, 
        var(--red) 84.5%, var(--red) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

至此,Google logo 制作完成,接下來制作 googol 信息,說明 Google 的名字來源于含義是 1 后面跟 100 個零的大數(shù)的單詞 googol。

在 dom 中添加一行說明文本和容納數(shù)字的容器,容器中包含 5 個數(shù)字,在每個數(shù)字的內(nèi)聯(lián)樣式中指定了顏色變量:

<p class="desc">The name of Google originated from a misspelling of the word "googol", the number 1 followed by 100 zeros.</p> 
<p class="zeros">
    <span style="--c:var(--blue);">1</span>
    <span style="--c:var(--red);">0</span>
    <span style="--c:var(--yellow);">0</span>
    <span style="--c:var(--blue);">0</span>
    <span style="--c:var(--green);">0</span>
</p>

設(shè)置說明文本的樣式:

.desc {
    font-size: 1.5vw;
    font-weight: normal;
    color: dimgray;
    margin-top: 2em;
}

設(shè)置數(shù)字的樣式:

.zeros {
    font-size: 3vw;
    font-weight: bold;
    margin-top: 0.2em;
    text-align: center;
    width: 25.5em;
    word-wrap: break-word;
}

為數(shù)字上色:

.zeros span {
    color: var(--c);
}

微調(diào)數(shù)字 "1" 的邊距,讓它不要和后面的 "0" 靠得太緊:

.zeros span:nth-child(1) {
    margin-right: 0.2em;
}

至此,靜態(tài)布局完成,接下來用 d3 批量處理數(shù)字。

引入 d3 庫,并刪除掉 dom 中 .zeros 的數(shù)字子元素:

<script src="https://d3js.org/d3.v5.min.js"></script>

最終我們會在頁面上顯示 100 個 0,每個 0 的顏色都不同,并且為了美觀,相鄰數(shù)字的顏色也要不同。
所以,先定義一個獲取顏色的函數(shù),它可以從 Google logo 配色的 4 種顏色中取任意一個顏色,并且有一個表示被排除顏色的參數(shù),當(dāng)指定的此參數(shù)時,就從 4 個可選的顏色中去掉這個顏色,然后從剩下的 3 個顏色中隨機(jī)取一個顏色:

function getColor(excludedColor) {
    let colors = new Set(['blue', 'red', 'yellow', 'green'])
    colors.delete(excludedColor)
    return Array.from(colors)[Math.floor(d3.randomUniform(0, colors.size)())]
}

然后,定義 2 個常量,ZEROS 是存儲 100 個 0 的數(shù)組,ONE 是存儲數(shù)字 1 的對象,它有 2 個屬性,number 表示它的數(shù)值是 1,color 表示它的顏色是藍(lán)色:

const ZEROS = d3.range(100).map(x=>0)
const ONE = {number: 1, color: 'blue'}

接下來,通過用 reduce 函數(shù)遍歷 ZEROS 數(shù)組,返回一個新的數(shù)組 numbers,它有 101 個元素(1 以及跟隨它的 100 個 0),每個元素都是 1 個包含 numbercolor 屬性的對象:

let numbers = ZEROS.reduce(function (numberObjects, d) {
    numberObjects.push({
        number: d,
        color: getColor(numberObjects[numberObjects.length - 1].color)
    })
    return numberObjects
}, [ONE])

然后,以 numbers 為數(shù)據(jù)源,用 d3 批量創(chuàng)建出 dom 元素,并且把顏色信息寫在行內(nèi)樣式中:

d3.select('.zeros')
    .selectAll('span')
    .data(numberObjects)
    .enter()
    .append('span')
    .style('--c', (d)=>`var(--${d.color})`)
    .text((d)=>d.number)

最后,微調(diào)一下內(nèi)容的邊距,使整個內(nèi)容居中:

.logo {
    margin-top: -10vh;
}

看完了這篇文章,相信你對使用CSS在線字體和D3實現(xiàn)Google信息圖的方法有了一定的了解,想了解更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI