close
//先儲存圖片原始大小,之後調整不可以原始大小大 var UML_img_width = []; var 說明_img_width = []; $(window).load(function () { var i = 0; $('.UML img').hide(); $('.說明 img').hide(); $('.UML img').each(function () { UML_img_width.push($(this).width()); if ($(this).width() > $('.UML_heading').width()) { $(this).width($('.UML_heading').width() - 10); } i++; }) $('.說明 img').each(function () { 說明_img_width.push($(this).width()); if ($(this).width() > $('.UML_heading').width()) { $(this).width($('.UML_heading').width() - 10); } i++; }) $('.UML img').show(); $('.說明 img').show(); }) //圖片自動調整大小 $(window).resize(function () { console.log('UML_heading:' + $('.UML_heading').width()); //alert($('.UML_heading').width()); var i = 0; $('.UML img').hide(); $('.說明 img').hide(); $('.UML img').each(function () { //alert($(this).width() + ':' + img_width[i]); if (UML_img_width[i] > $('.UML_heading').width()) { //alert(img_width[i]); $(this).width($('.UML_heading').width() - 10); } $(this).show(); i++; }) i = 0; $('.說明 img').each(function () { if (說明_img_width[i] > $('.UML_heading').width()) { $(this).width($('.UML_heading').width() - 10); } $(this).show(); i++; }) })
全站熱搜
留言列表