-
Notifications
You must be signed in to change notification settings - Fork 0
/
respimgx.html
53 lines (52 loc) · 1.45 KB
/
respimgx.html
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta http-equiv="Accept-CH" content="DPR, Viewport-Width, Width">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script>
document.createElement("picture");
</script>
<script async="true" src="//cdnjs.cloudflare.com/ajax/libs/picturefill/2.3.1/picturefill.min.js"></script>
<style type="text/css">
figure {
padding: 0;
margin: 0;
}
@media (min-width: 36em) {
figure {
display: block;
float: left;
width: 33.3333333333333%;
}
}
</style>
</head>
<body>
<figure>
<img src="i/coast_375x.jpg" sizes="(min-width: 36em) 33.3vw, 100vw"
srcset="i/coast_375x.jpg 375w,
i/coast_480x.jpg 480w,
i/coast_768x.jpg 768w,
i/coast_1024x.jpg 1024w"
alt="" width="100%">
</figure>
<figure>
<img src="i/pencils_375x.jpg" sizes="(min-width: 36em) 33.3vw, 100vw"
srcset="i/pencils_375x.jpg 375w,
i/pencils_480x.jpg 480w,
i/pencils_768x.jpg 768w,
i/pencils_1024x.jpg 1024w"
alt="" width="100%">
</figure>
<figure>
<img src="i/kids_375x.jpg" sizes="(min-width: 36em) 33.3vw, 100vw"
srcset="i/kids_375x.jpg 375w,
i/kids_480x.jpg 480w,
i/kids_768x.jpg 768w,
i/kids_1024x.jpg 1024w"
alt="" width="100%">
</figure>
</body>
</html>