我想在 iframe 中间添加一个按钮,背景是我选择的图像。就像我说的,它位于中间,按钮显示“立即播放”,单击时,它会加载 iframe。我希望它像KBH Games。使用 python 还是其他语言都没关系。
我尝试做 iframe,但我无法在其中放置按钮或图像。我在这里询问希望有解决方案。
等待加载后即可访问iframe的内容
const frame = document.querySelector("your_frame_selector");
frame.addEventListener("load",() => {
console.log(frame.contentWindow.document.body);
});