使用 iframe 在鼠标悬停时显示实时页面预览
创建当鼠标悬停在链接上时出现在小弹出窗口中的实时页面预览,考虑使用 iframe。以下是分步方法:
示例代码:
<code class="css">.box { display: none; width: 100%; } a:hover + .box, .box:hover { display: block; position: relative; z-index: 100; }</code>
<code class="html">This live preview for <a href="https://en.wikipedia.org/">Wikipedia</a> <div class="box"> <iframe src="https://en.wikipedia.org/" width="500px" height="500px"></iframe> </div></code>
此代码将创建一个包含实时预览的小弹出窗口当鼠标悬停在链接上时的维基百科页面。只要光标保持在其边界内,弹出窗口就会保持可见。
以上是当鼠标悬停在使用 iframe 的链接上时,如何在弹出窗口中显示实时页面预览?的详细内容。更多信息请关注PHP中文网其他相关文章!