gpt4 book ai didi

javascript - 将 href 包裹在 iframe 周围

转载 作者:数据小太阳 更新时间:2023-10-29 05:44:13 27 4
gpt4 key购买 nike

我想在 vimeo 或 youtube 视频周围包装一个 href 并阻止嵌入的默认播放点击事件,然后转到 href。有谁知道如何做到这一点?

<a href="http://tumblr.com" target="_blank" class="linkwrap">

<iframe width="420" height="315" src="https://www.youtube.com/embed/5Xbs60BMeRU" frameborder="0" allowfullscreen></iframe>

</a>

最佳答案

html

<a href="http://tumblr.com" target="_blank" class="linkwrap">
<div class="blocker"></div>
<iframe width="420" height="315" src="https://www.youtube.com/embed/5Xbs60BMeRU" frameborder="0" allowfullscreen></iframe>
</a>

CSS

.linkwrap { position:relative; display:inline-block; }
.blocker { position:absolute; height:100%; width:100%; z-index:1; background:rgba(255,0,0,0.5); }
.linkwrap iframe { z-index: 2; }

jsfiddle - here

关于javascript - 将 href 包裹在 iframe 周围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28917703/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com