如何隐藏iframe,但仍然加载它?等等。播放youtube歌曲。
<iframe src="https://www.youtube.com/embed/X18mUlDddCc?autoplay=1" style="display: none;"></iframe>
这将隐藏iframe,但它似乎不会加载iframe。 (宋没有上演。)
谢谢
如何隐藏iframe,但仍然加载它?等等。播放youtube歌曲。
<iframe src="https://www.youtube.com/embed/X18mUlDddCc?autoplay=1" style="display: none;"></iframe>
这将隐藏iframe,但它似乎不会加载iframe。 (宋没有上演。)
谢谢
使用可以使用宽度0,高度0和边框0
所以更新的代码将是!
<iframe src="https://www.youtube.com/embed/X18mUlDddCc?autoplay=1" style="width:0;height:0;border:0; border:none;"></iframe>
添加:
style="width:0; height:0; border:0; border:none"
它将隐藏它,使媒体在后台播放,它也会崩溃它的空间!
更新小提琴
在我添加绝对定位之前,我仍然遇到iframe占用空间的问题。然后它一起停止占用空间。
<iframe src="/auth/sso/" style="width: 0; height: 0; border: 0; border: none; position: absolute;"></iframe>
将可见性设置为隐藏。然而,它占用的空间不会崩溃。
<iframe src="https://www.youtube.com/embed/X18mUlDddCc?autoplay=1" style="visibility: hidden;"></iframe>
通过结合两个答案,我使用 height:0;
和 visibility:0
,因为这也可以隐藏任何边框或框阴影。