-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (25 loc) · 723 Bytes
/
index.html
File metadata and controls
27 lines (25 loc) · 723 Bytes
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">
<head>
<link href="css/wow_book/wow_book.css" rel="stylesheet" />
</head>
<body>
<div id="my_flip_book"></div>
<script src="js/jquery.js"></script>
<script src="js/wow_book/pdf.combined.min.js"></script>
<script src="js/wow_book/wow_book.min.js"></script>
<script>
$("#my_flip_book").wowBook({
container: true,
containerHeight: 670,
containerWidth: 830,
flipSound: false,
pdf: "http://www.africau.edu/images/default/sample.pdf",
containerBackground: "#333",
hardcovers: true,
toolbar: "back, next, first, last",
toolbarPosition: "bottom"
});
</script>
</body>
</html>