首先禁用的IFRAME:
window.onload = function() {
var iframes = document.getElementsByTagName('iframe');
var iframe = iframes[0],
d = document.createElement('div');
d.style.width = iframe.offsetWidth + 'px';
d.style.height = iframe.offsetHeight + 'px';
d.style.top = iframe.offsetTop + 'px';
d.style.left = iframe.offsetLeft + 'px';
d.style.position = 'absolute';
d.style.opacity = '0';
d.style.filter = 'alpha(opacity=0)';
d.style.background = 'black';
d.setAttribute("id", "blockDiv");
iframe.offsetParent.appendChild(d);
};
然後在10秒
setTimeout(function() {
$('#blockDiv').remove();
}, 10000);
後除去「Plus是可能的,從而2秒例如後用戶點擊幀之後改變幀高度」
在你的例子中這是不可能的。你可以做的是當用戶將鼠標移動到iframe上時改變寬度。
我可以添加一個內部框架,將谷歌框架,所以它可能工作? – user2026426
我不明白你的問題。 –
if if make a frame example – user2026426