您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關(guān)使用純CSS實(shí)現(xiàn)打開內(nèi)容彈窗的交互動(dòng)畫是什么的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考。一起跟隨小編過來看看吧。
效果預(yù)覽
代碼解讀
定義 dom,一個(gè)名為 .main 的容器中包含 1 個(gè)鏈接:
<div class="main"> <a href="#" class="open-popup">open popup</a> </div>
設(shè)置頁面的基本屬性:無邊距、全高、忽略溢出:
body { margin: 0; height: 100vh; overflow: hidden; }
設(shè)置主界面的背景和其中按鈕的布局方式:
.main { height: inherit; background: linear-gradient(dodgerblue, darkblue); display: flex; align-items: center; justify-content: center; }
設(shè)置按鈕樣式:
.open-popup { box-sizing: border-box; color: white; font-size: 16px; font-family: sans-serif; width: 10em; height: 4em; border: 1px solid; text-align: center; line-height: 4em; text-decoration: none; text-transform: capitalize; }
設(shè)置按鈕懸停效果:
.open-popup:hover { border-width: 2px; }
至此,主界面完成,接下來制作彈窗。
在 dom 中增加的 .popup
小節(jié)表示彈窗內(nèi)容,其中的 <a>
是返回按鈕,<p>
是具體內(nèi)容,這里我們把內(nèi)容簡化為一些陸生動(dòng)物的 unicode 字符,為了能夠觸發(fā)這個(gè)彈窗,設(shè)置 .popup
的 id
為 terrestrial
,并在 .main
的 <a>
鏈接中指向它:
<div class="main"> <a href="#terrestrial" class="open-popup">terrestrial animals</a> </div> <section id="terrestrial" class="popup"> <a href="#" class="back">< back</a> <p>
感謝各位的閱讀!關(guān)于使用純CSS實(shí)現(xiàn)打開內(nèi)容彈窗的交互動(dòng)畫是什么就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。