Created
July 10, 2014 09:32
-
-
Save vcalderondev/f1f34dc2b798965c3ba1 to your computer and use it in GitHub Desktop.
Aumentar tamaño de las imágenes pequeñas de Blogger
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Un método sencillo de cambiar la dimensión en las imágenes de 72píxeles. | |
// Para hacer funcionar aquel código necesitas especificar los selectores a los que se le aplicarán los cambios. | |
// NOTA: cambiar 's600' por el valor deseado (Máximo 1600 píxeles y si deseas que la imagen conserve su forma cuadrada, añade -c al final del número). | |
$(document).ready( function(){ | |
$('.selector1, .selector2').each(function(){ | |
var url_imagen = $(this).attr("src").replace('s72-c','s600'); | |
$(this).attr("src",url_imagen); | |
}); | |
}); | |
// NOTA: Necesita jQuery en la plantilla |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment