-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (28 loc) · 1.04 KB
/
index.html
File metadata and controls
33 lines (28 loc) · 1.04 KB
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<title>Page Turner</title>
<script type="text/javascript" charset="utf-8" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.0/jquery.min.js"></script>
<script type="text/javascript" charset="utf-8" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js"></script>
<script type="text/javascript" src="./script/page_turner.js"></script>
<link rel="stylesheet" href="./css/style.css" type="text/css" media="screen" title="no title" charset="utf-8">
</head>
<body>
<div id="page_turner"></div>
<script type="text/javascript" charset="utf-8">
(function(){
pt = new page_turner();
pt.set_image_height(400);
pt.set_image_width(600);
pt.add_images([
"images/image_1.jpg",
"images/image_2.jpg"
]);
pt.add_images([
"images/image_3.jpg"
]);
})();
</script>
</body>
</html>