Español
<!-- http://www.downcodes.com/js --> <!-- bbs http://www.downcodes.com/bbs--> <!-- Código HTML completo--> <html > <head> <title> Explorador de imágenes</title> <script> function ViewImage(form) { photoHeight=form.height.value photoWidth=form.width.value var urlType=form.url.value var LocalurlType=urlType( 'http://')==-1 if(LocalurlType) urlType="file:///"+urlType win=window.open("","","width="+photoWidth+",height= "+ photoHeight+"") win.document.write("<html><head><title>La imagen que desea explorar</title></head><body>") win.document.write('<div style = "position:absolute;width:'+photoWidth+';height:'+photoHeight+';left:0px;top:0px">') win.document.write("<img src="+urlType+" width="+ photoWidth+ " height="+photoHeight+"></div></body></html>") win.document.close(); } </script> </head> <body> <center> Introduzca lo que desee. Explore la URL donde se encuentra la imagen. Si la imagen está en su computadora local, presione el botón de exploración <p> <formulario> <tipo de entrada=tamaño de archivo=40 nombre=url> <p> Alto:<tipo de entrada=texto. nombre=alto tamaño= 3 valor=300> Ancho: <tipo de entrada=texto nombre=ancho tamaño=3 valor=250> </p> <tipo de entrada=valor del botón="Mostrar imagen" onclick="ViewImage(this.form )"> </p> form> </body> </html> <br><br><br> <p><font color=red>////Autor: Escuela de Software, Instituto de Tecnología de Nanyang, Contacto de Ren Binyu: 0377-3114024,0373 -7916269 </font></p>