-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsrcset.html
More file actions
executable file
·28 lines (26 loc) · 816 Bytes
/
srcset.html
File metadata and controls
executable file
·28 lines (26 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>Image srcset Polyfill</title>
<style type="text/css">
img {
max-width: 100%; /*make images responsive*/
}
.main {
font-family: "Segoe UI",Helvetica,Tahoma,Arial,Verdana,Sans-Serif;
max-width: 980px;
margin: 0 auto;
}
</style>
</head>
<body>
<div class="main">
<h1>Srcset Polyfill</h1>
<p>Resize the page to load the larger image.</p>
<img src="./img/image-480px.jpg" srcset="./img/image-768px.jpg 768w, ./img/image-979px.jpg 979w" alt="srcset example" />
</div>
<script src="./js/jquery.js"></script>
<script src="./js/img.srcset.polyfill.js"></script>
</body>
</html>