您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關使用純CSS實現打開內容彈窗的交互動畫是什么的內容。小編覺得挺實用的,因此分享給大家做個參考。一起跟隨小編過來看看吧。
效果預覽
代碼解讀
定義 dom,一個名為 .main 的容器中包含 1 個鏈接:
<div class="main"> <a href="#" class="open-popup">open popup</a> </div>
設置頁面的基本屬性:無邊距、全高、忽略溢出:
body { margin: 0; height: 100vh; overflow: hidden; }
設置主界面的背景和其中按鈕的布局方式:
.main { height: inherit; background: linear-gradient(dodgerblue, darkblue); display: flex; align-items: center; justify-content: center; }
設置按鈕樣式:
.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; }
設置按鈕懸停效果:
.open-popup:hover { border-width: 2px; }
至此,主界面完成,接下來制作彈窗。
在 dom 中增加的 .popup
小節表示彈窗內容,其中的 <a>
是返回按鈕,<p>
是具體內容,這里我們把內容簡化為一些陸生動物的 unicode 字符,為了能夠觸發這個彈窗,設置 .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>
感謝各位的閱讀!關于使用純CSS實現打開內容彈窗的交互動畫是什么就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。