-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathckaybday.html
47 lines (38 loc) · 1.61 KB
/
ckaybday.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="chrome=1"/>
<meta name="viewport" content="width=device-width"/>
<link rel="stylesheet" href="css/style.css" type="text/css"/>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300,600' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Cabin:600' rel='stylesheet' type='text/css'>
<title>David Pollard</title>
</head>
<body>
<section class="container surround">
<div class="gallery">
<img src="inc/img/ckaybday1.jpg" width="612" height="396" alt="1" />
<img src="inc/img/ckaybday2.jpg" width="612" height="396" alt="2" style="display:none"/>
<img src="inc/img/ckaybday3.jpg" width="612" height="396" alt="3" style="display:none" />
<img src="inc/img/ckaybday4.jpg" width="612" height="396" alt="4" style="display:none" />
</div>
</section>
<section class="container">
<button class="next" type="button">Next Page</button>
</section>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js"></script>
<script src="inc/js/jquery.pageturn.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript" charset="utf-8">
jQuery(document).ready(function($){
$('div.gallery').flipGallery();
$('button.next').click(function(event){
event.preventDefault();
// Trigger a page flip
$('div.gallery').flipGallery('turn');
});
});
</script>
</body>
</html>