0
我添加了jQuery函數來調整大小圖片的大小以適合div(200px 200px並且不確定該函數是否正確),但是每次刷新頁面時函數都會執行再次和圖片出現在整個屏幕上一秒鐘!我怎樣才能防止這個?我的功能:JQuery圖片大小調整出現在整個屏幕上
$(document).ready(function() {
$('.profile-picture img').each(function() {
var width = $(this).width();
var height = $(this).height();
if(width > height) {
$(this).css("max-width", "100%");
$(this).css("height", "100%");
}else {
$(this).css("width", "100%");
$(this).css("max-height", "100%");
}
});
});
在一個後我發現答案是在說:「你有回調做」,但不知道怎麼辦。你能給我建議嗎?先謝謝你!
它這樣做是因爲該頁面不呈現,直到你的'$(文件).ready'(準備好)。防止這種情況的最好方法是通過AJAX加載圖片。 – Sablefoste