溫馨提示×

溫馨提示×

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

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

使用CSS和Vanilla.js怎么實現(xiàn)tooltip提示框

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

小編給大家分享一下使用CSS和Vanilla.js怎么實現(xiàn)tooltip提示框,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!

效果預(yù)覽

使用CSS和Vanilla.js怎么實現(xiàn)tooltip提示框

源代碼下載

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

代碼解讀

定義 dom,容器中包含一個名為 .emoji 的子容器,代表一個頭像,它的子元素 eye left、eye rightmouth 分別代表左眼、右眼和嘴巴:

<section class="container">
    <div class="emoji">
        <span class="eye left"></span>
        <span class="eye right"></span>
        <span class="mouth"></span>
    </div>
</section>

居中顯示:

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

定義容器尺寸和子元素對齊方式:

.container {
    position: relative;
    width: 20em;
    height: 20em;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

定義頭像的輪廓:

.emoji {
    position: relative;
    box-sizing: border-box;
    width: 10em;
    height: 10em;
    background-color: pink;
    border-radius: 50% 50% 75% 50%;
}

定義頭像眼睛的輪廓:

.emoji .eye {
    position: absolute;
    box-sizing: border-box;
    width: 3em;
    height: 3em;
    border: 0.1em solid gray;
    border-radius: 50%;
    top: 3em;
}

.emoji .eye.left {
    left: 1em;
}

.emoji .eye.right {
    right: 1em;
}

畫出眼珠:

.emoji .eye.left::before,
.emoji .eye.right::before {
    content: '';
    position: absolute;
    width: 1em;
    height: 1em;
    background-color: #222;
    border-radius: 50%;
    top: 1em;
    left: calc((100% - 1em) / 2);
}

畫出微笑的嘴:

.emoji .mouth {
    position: absolute;
    width: 2em;
    height: 2em;
    border: 0.1em solid;
    bottom: 1em;
    left: 40%;
    border-radius: 50%;
    border-color: transparent gray gray transparent;
    transform: rotate(20deg);
}

接下來制作眼珠轉(zhuǎn)向 4 個方向的效果。
用 2 個變量分別表示眼珠的定位位置:

.emoji .eye {
    --top: 1em;
    --left: calc((100% - 1em) / 2);
}

.emoji .eye.left::before,
.emoji .eye.right::before {
    top: var(--top);
    left: var(--left);
}

設(shè)置眼珠在 4 個方向的定位位置:

.emoji.top .eye {
    --top: 0;
}

.emoji.bottom .eye {
    --top: 1.8em;
}

.emoji.left .eye {
    --left: 0;
}

.emoji.right .eye {
    --left: 1.8em;
}

此時,如果為 dom 元素 .emoji 增加 top、bottom、left、right 4 個樣式中的任何一個樣式,眼珠就會轉(zhuǎn)向特定的方向。

在 dom 中增加 4 個元素,每個元素的內(nèi)容是一個 @ 字符:

<section class="container">
    <div class="emoji">
        <!-- 略 -->
    </div>
    
    <span class="tip top">@</span>
    <span class="tip left">@</span>
    <span class="tip right">@</span>
    <span class="tip bottom">@</span>
</section>

把 4 個元素布局在頭像周圍:

.tip {
    position: absolute;
    cursor: pointer;
    font-size: 4.5em;
    color: silver;
    font-family: sans-serif;
    font-weight: 100;
}

.tip.top {
    top: -15%;
}

.tip.bottom {
    bottom: -15%;
}

.tip.left {
    left: -15%;
}

.tip.right {
    right: -15%;
}

寫一段腳本,增加一點交互效果。當(dāng)鼠標懸停在 4 個方向的 @ 上時,使眼珠朝相應(yīng)的方向轉(zhuǎn)去。這里的 DIRECTION 常量存儲了 4 個方向,EVENTS 常量存儲了 2 個鼠標事件,$ 常量包裝了根據(jù)類名獲取 dom 元素的操作:

const DIRECTIONS = ['top', 'bottom', 'left', 'right']
const EVENTS = ['mouseover', 'mouseout']
const $ = (className) => document.getElementsByClassName(className)[0]

DIRECTIONS.forEach(direction => 
    EVENTS.forEach((e) => 
        $(`tip ${direction}`).addEventListener(e, () =>
            $('emoji').classList.toggle(direction)
        )
    )
)

為眼珠設(shè)置緩動時間,使動畫平滑:

.emoji .eye.left::before,
.emoji .eye.right::before {
    transition: 0.3s;
}

接下來制作 tooltip 提示框。
為 4 個 @ 符號的 dom 增加 data-tip 屬性,其內(nèi)容就是 tooltip 信息:

<section class="container">
    <div class="emoji">
        <!-- 略 -->
    </div>
    
    <span class="tip top" data-tip="look up">@</span>
    <span class="tip bottom" data-tip="look down">@</span>
    <span class="tip left" data-tip="look to the left">@</span>
    <span class="tip right" data-tip="look to the right">@</span>
</section>

::before 偽元素展示提示信息,樣式為黑底白字:

.tip::before {
    content: attr(data-tip);
    position: absolute;
    font-size: 0.3em;
    font-family: sans-serif;
    width: 10em;
    text-align: center;
    background-color: #222;
    color: white;
    padding: 0.5em;
    border-radius: 0.2em;
    box-shadow: 0 0.1em 0.3em rgba(0, 0, 0, 0.3);
}

把頂部的提示框定位到頂部 @ 符號的上方正中:

.tip.top::before {
    top: 0;
    left: 50%;
    transform: translate(-50%, calc(-100% - 0.6em));
}

類似地,把其他 3 個提示框也定位到 @ 符號的旁邊:

.tip.bottom::before {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, calc(100% + 0.6em));
}

.tip.left::before {
    left: 0;
    top: 50%;
    transform: translate(calc(-100% - 0.6em), -50%);
}

.tip.right::before {
    right: 0;
    top: 50%;
    transform: translate(calc(100% + 0.6em), -50%);
}

::after 偽元素在頂部提示框下面畫出一個倒三角形:

.tip::after {
    content: '';
    position: absolute;
    font-size: 0.3em;
    width: 0;
    height: 0;
    color: #222;
    border: 0.6em solid transparent;
}

.tip.top::after {
    border-bottom-width: 0;
    border-top-color: currentColor;
    top: -0.6em;
    left: 50%;
    transform: translate(-50%, 0);
}

類似地,在其他 3 個提示框旁邊畫出三角形:

.tip.bottom::after {
    border-top-width: 0;
    border-bottom-color: currentColor;
    bottom: -0.6em;
    left: 50%;
    transform: translate(-50%, 0);
}

.tip.left::after {
    border-right-width: 0;
    border-left-color: currentColor;
    left: -0.6em;
    top: 50%;
    transform: translate(0, -50%);
}

.tip.right::after {
    border-left-width: 0;
    border-right-color: currentColor;
    right: -0.6em;
    top: 50%;
    transform: translate(0, -50%);
}

最后,隱藏提示框,使提示框只在鼠標懸停時出現(xiàn):

.tip::before,
.tip::after {
    visibility: hidden;
    filter: opacity(0);
    transition: 0.3s;
}

.tip:hover::before,
.tip:hover::after {
    visibility: visible;
    filter: opacity(1);
}

看完了這篇文章,相信你對使用CSS和Vanilla.js怎么實現(xiàn)tooltip提示框有了一定的了解,想了解更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細節(jié)

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

AI