Français
<!-- http://www.downcodes.com/js --> <!-- bbs http://www.downcodes.com/bbs--> <!-- Code HTML complet--> <html > <head> <title> Navigateur d'images</title> <script> function ViewImage(form) { photoHeight=form.height.value photoWidth=form.width.value var urlType=form.url.value var LocalurlType=urlType indexOf(. 'http://')==-1 if(LocalurlType) urlType="file:///"+urlType win=window.open("","","width="+photoWidth+",height= "+ photoHeight+"") win.document.write("<html><head><title>L'image que vous souhaitez parcourir</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> Veuillez saisir ce que vous voulez Parcourez l'URL où se trouve l'image. Si l'image se trouve sur votre ordinateur local, appuyez sur le bouton Parcourir <p> <form> <input type=file size=40 name=url> <p> Hauteur :<input type=text. name=height size= 3 value=300> Largeur : <input type=text name=width size=3 value=250> </p> <input type=button value="Afficher l'image" onclick="ViewImage(this.form )"> </p> form> </body> </html> <br><br><br> <p><font color=red>////Auteur : École de logiciels, Institut de technologie de Nanyang, Ren Binyu Contact : 0377-3114024,0373 -7916269 </font></p>