Created
May 29, 2020 10:19
-
-
Save kiransiluveru/f2ee5babdcd942dbc5a75b60d91fffb0 to your computer and use it in GitHub Desktop.
Webp images usage guide
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>WEBP images </title> | |
<script type="text/javascript"> | |
function getDimensions() { | |
let width = window.innerWidth | |
|| document.documentElement.clientWidth | |
|| document.body.clientWidth; | |
let height = window.innerHeight | |
|| document.documentElement.clientHeight | |
|| document.body.clientHeight; | |
document.getElementById('width').innerHTML = width; | |
document.getElementById('height').innerHTML = height; | |
} | |
window.onresize = getDimensions; | |
window.onload = getDimensions; | |
</script> | |
</head> | |
<body> | |
<div style="text-align: center;"> | |
<p> | |
Window Width: <span id="width"></span> | |
</p> | |
<p> | |
Widow Height: <span id="height"></span> | |
</p> | |
</div> | |
<picture style="text-align: center;display: block;"> | |
<!-- min width > = 600 --> | |
<source media="(min-width:1200px)" srcset="./red-car-1200.webp" /> | |
<source media="(min-width:1000px)" srcset="./black-red-1000.webp" /> | |
<source media="(min-width:900px)" srcset="./pink-900.webp" /> | |
<img src="./car.jpg" alt="Car Image" /> | |
</picture> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment