我一直在尋找和即興發揮,並拿出這樣的:jQuery的圖像尺寸時,窗口大小
$(window).resize(function() {
function imgResize()
{
if ($("#post_container img").width() > $("#post_container img").height()){
$('#post_container img').css({ 'width': '80%', 'height': 'auto' });
}
else if ($("#post_container img").width() < $("#post_container img").height()){
$('#post_container img').css({ 'width': 'auto', 'height': '80%' });
}
else {
$('#post_container img').css({ 'width': '80%', 'height': 'auto' });
}
}
})
是這樣的代碼,甚至正確的,因爲它應該做的是調整檢測窗口時,如果圖像肖像或風景,並調整它的大小,使其完全適合屏幕。
您只定義了該功能,但未執行該功能。 – Terry 2013-04-22 05:54:43
您應該將此功能放在'resize'事件之外,並在事件內部調用它。 – Vishal 2013-04-22 05:56:34