-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
20 lines (20 loc) · 845 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8" />
<link href='http://fonts.googleapis.com/css?family=Lato:100,300,400,700,400italic' rel='stylesheet' type='text/css'>
<title>jQuery Image Orientation Checker</title>
</head>
<body>
<img src="http://static6.businessinsider.com/image/51cdf71aeab8ea6b6000000a/10-real-people-who-are-winning-their-fight-with-debt.jpg">
<img src="http://peoplecd.com/wp-content/uploads/2012/10/home_6.jpg">
<img src="http://images5.fanpop.com/image/photos/28300000/8th-Annual-Teen-People-Luncheon-2006-mackenzie-rosman-28338512-1833-2560.jpg">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="min/jquery.imageorientation.min.js"></script>
<script>
$(window).on('load', function() {
$('img').orientation();
});
</script>
</body>
</html>