
27/09/2006, 14:57
|
| | Fecha de Ingreso: septiembre-2006
Mensajes: 1
Antigüedad: 18 años, 5 meses Puntos: 0 | |
hola, podrías hacerlo con un javascript:
function resizeImg(cualImg) {
var imagen = document.getElementById(cualImg);
var anchoFoto=imagen.width;
var altoFoto=imagen.height;
imagen.width = anchoFoto*2;
imagen.height = altoFoto*2;
}
Espero que te sirva ;) |