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

In - Dãn ảnh tới kích thước cửa sổ - JavaScriptBank.com

Phiên bản đầy đủ: jsB@nk » Thủ thuật » Dãn ảnh tới kích thước cửa sổ
URL: https://www.javascriptbank.com/scaling-image-accord-to-window-size.html

Dãn ảnh tới kích thước cửa sổ © JavaScriptBank.comVới một đoạn mã JavaScript đơn giản, bạn có thể kéo dãn ảnh tới đúng kích thước của cửa sổ trình duyệt.

Phiên bản đầy đủ: jsB@nk » Thủ thuật » Dãn ảnh tới kích thước cửa sổ
URL: https://www.javascriptbank.com/scaling-image-accord-to-window-size.html



JavaScript
<script language="javascript">function ScaleSize(){document.getElementById("imgTag").style.width = document.body.clientWidth;document.getElementById("imgTag").style.height = document.body.clientHeight;}</script><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


HTML
<body onload="javascript:ScaleSize();" onresize="history.go(0)"><img id="imgTag" src="../image/logojs.gif"></body><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->