26/09/2009, 11:00
|
| | | Fecha de Ingreso: febrero-2009
Mensajes: 240
Antigüedad: 15 años, 10 meses Puntos: 4 | |
Respuesta: Sacar Imagen Leete los metodos de redimencionar imágenes con este Script en PHP: http://phpimagen.phperu.net/index.php?home=ej1
Te quedará por ejemplo:
Con javascript OnClick: Cita: ENTRE ETIQUETAS HEAD
<script type="text/javascript">
var _img_grande;
function mostrar() {
var ops = "top=" + ((screen.height - _img_grande.height) / 2);
ops += ",left=" + ((screen.width - _img_grande.width) / 2);
ops += ",width=" + _img_grande.width + ",height=" + _img_grande.height;
var contenido = "<html><body style='background-image: url(" + _img_grande.src + ")'></body></html>";
var ventana = window.open("", "", ops);
ventana.document.write(contenido);
ventana.document.close();
}
function cargando() {
if (_img_grande.complete) mostrar();
else setTimeout("cargando()", 100);
}
function abrir(imagen) {
_img_grande = new Image();
_img_grande.src = imagen;
cargando();
}
</script> ENTRE ETIQUETAS BODY
<img src="img.php?file=CARPETA/IMAGEN.png&ancho=68&alto=68" onclick="abrir('img.php?file=CARPETA/IMAGEN.png&ancho=250&alto=250')"/>
__________________ Si todas las URL's que tienes o visitas te parecen largas, visita www.korto.tk - También protege de rastros y con contraseñas tus páginas o URL's. |