»
Tiếng AnhTiếng PhápTiếng Việt

In - Làm tươi lại một ảnh - JavaScriptBank.com

Phiên bản đầy đủ: jsB@nk » Hình ảnh » Làm tươi lại một ảnh
URL: https://www.javascriptbank.com/web-cam-refresh.html

Làm tươi lại một ảnh © JavaScriptBank.comĐọan mã này có chức năng làm tươi lại một hình ảnh trong một khoảng thời gian mà không cần phải tải lại nguyên trang web chứa bức ảnh đó.

Phiên bản đầy đủ: jsB@nk » Hình ảnh » Làm tươi lại một ảnh
URL: https://www.javascriptbank.com/web-cam-refresh.html



HTML
<script language="javascript">var refreshrate=5;             //SECONDS BETWEEN REFRESHvar image="webcam.gif";       //IMAGE NAMEvar imgheight=200;             //IMAGE HEIGHTvar imgwidth=100;             //IMAGE WIDTHfunction refresh(){document.images["pic"].src=image+"?"+new Date();setTimeout('refresh()', refreshrate*1000);}document.write('<img src="'+image+'" height="'+imgheight+'" width="'+imgwidth+'" name="pic">');if(document.images)window.onload=refresh;</script><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->