-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex_not_lazy.html
27 lines (24 loc) · 1.3 KB
/
index_not_lazy.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
<!DOCTYPE html>
<html lang="en" ng-app="angularify.angular-lazyload">
<head>
<meta charset=utf-8>
<title>Angularify - lazy loading</title>
<link rel="stylesheet" type="text/css" href="src/css/lazy.css">
</head>
<body ng-controller="RootController">
<div>
<img src="img/800px-Big_Sur_June_2008.jpg" height="600px" width="800px"
style="display: block; left: 10px; margin-top: 10px;" ></img>
<img src="img/BIG_Zira_Island_Copyright_BIG_1_S.jpg" height="600px" width="800px"
style="display: block; left: 10px; margin-top: 10px;"></img>
<img src="img/Big_wave.jpg" style="display: block; left: 10px;" height="600px" width="800px"></img>
<img src="img/Fronalpstock_big.jpg" style="display: block; left: 10px;" height="600px" width="800px"></img>
<img src="img/orionfull_jcc.jpg" style="display: block; left: 10px;" height="600px" width="800px"></img>
<img src="img/stock_big.jpg" style="display: block; left: 10px;"></img>
</div>
<script src="src/lib/angular.min.js" type="text/javascript"></script>
<script src="src/angular-lazyload.js" type="text/javascript"></script>
<script src="src/directives/lazy-load.js" type="text/javascript"></script>
<script src="demo/demoCtrl.js" type="text/javascript"></script>
</body>
</html>