Maison > Article > interface Web > Méthode de jQuery pour modifier dynamiquement la taille de l'image lors du chargement de page_jquery
L'exemple de cet article décrit comment jQuery modifie dynamiquement la taille de l'image lorsque la page est chargée. Partagez-le avec tout le monde pour votre référence. Les détails sont les suivants :
$(window).bind("load", function() { // IMAGE RESIZE $('#product_cat_list img').each(function() { var maxWidth = 120; var maxHeight = 120; var ratio = 0; var width = $(this).width(); var height = $(this).height(); if(width > maxWidth){ ratio = maxWidth / width; $(this).css("width", maxWidth); $(this).css("height", height * ratio); height = height * ratio; } var width = $(this).width(); var height = $(this).height(); if(height > maxHeight){ ratio = maxHeight / height; $(this).css("height", maxHeight); $(this).css("width", width * ratio); width = width * ratio; } }); //$("#contentpage img").show(); // IMAGE RESIZE });
J'espère que cet article sera utile à la programmation jQuery de chacun.