<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; }
.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>
Atas ialah kandungan terperinci 如何使用纯CSS实现打开内容弹窗的交互动画(附源码). Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!