-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
25 lines (25 loc) · 888 Bytes
/
index.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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8" />
<link href='https://fonts.googleapis.com/css?family=Lato:100,300,400,700,400italic' rel='stylesheet' type='text/css'>
<title>jQuery Responsive Width Size | Sizeme.js</title>
<link type="text/css" rel="stylesheet" href="style.css" media="all">
</head>
<body>
<div class="div" style="width:25%;"></div>
<div class="div" style="width:70%;"></div>
<div class="div" style="width:40%;"></div>
<div class="div" style="width:55%;"></div>
<div class="div" style="width:70%;"></div>
<div class="div" style="width:25%;"></div>
<div class="div" style="width:96.5%;"></div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="min/jquery.sizeme.min.js"></script>
<script>
$(window).resize(function() {
$('.div').sizeme();
}).resize();
</script>
</body>
</html>