2012-10-10 67 views
0

我想在iFrame中顯示大圖像。這些圖像在不同的按鈕點擊動態加載。雖然這可以正常工作,但由於圖像很大,因此當它在iFrame中顯示時,我需要隨時調整它的大小。可以設置iFrame的src圖像的寬度嗎?

有沒有辦法做到這一點?

感謝您的任何幫助。

這就是我正在做的。

<iframe id="myFrame" style="width:950; height: 600px; border: 0px solid red;" src="myImage1.png"></iframe> 

我需要在myImage.png上設置一個寬度。

+0

調整大小是什麼?圖像或iframe? – Nelson

+0

圖像,而不是iFrame。我已經在iFrame上設置了一個固定的高度和寬度。這樣做的原因是,我正在開發一個移動網站,圖像需要能夠縮放。這是我能想到的最簡單的解決方案。 – WhatsInAName

回答

0

讓按鈕將CSS類應用於圖像並使用CSS設置圖像的尺寸。

0

負載像波紋管實現調整大小圖像的iframe的形象,

function loadImage(index){ 
    img.src = images[index]; 
    var content = "<html><body><img src='"+images[index]+"' width='300' height='200'></body></html>"; 
    iF.contentWindow.document.open('text/html', 'replace'); 
    iF.contentWindow.document.write(content); 
    iF.contentWindow.document.close(); 
} 

檢查他的工作sample我試着用iframe和IMG。

相關問題