使用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中文網其他相關文章!