-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallery_text.php
executable file
·51 lines (48 loc) · 1.94 KB
/
gallery_text.php
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
48
49
50
51
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1" />
<title>Sequence Theme Demo - Sliding Horizontal Parallax</title>
<link rel="stylesheet" type="text/css" media="screen" href="slide_text/css/gallery_text.css" />
<link href="http://fonts.googleapis.com/css?family=Play:400,700" rel="stylesheet" type="text/css">
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script>
if (typeof jQuery == 'undefined'){
document.write(unescape('%3Cscript src="slide_text/scripts/jquery-min.js" %3E%3C/script%3E'));
}
</script>
<script src="slide_text/scripts/jquery.sequence.js"></script>
<script src="slide_text/sequencejs-options.sliding-horizontal-parallax.js"></script>
</head>
<body>
<div id="sequence">
<img class="sequence-prev" src="slide_text/images/bt-prev.png" alt="Previous" />
<img class="sequence-next" src="slide_text/images/bt-next.png" alt="Next" />
<ul class="sequence-canvas">
<li class="animate-in">
<div class="info">
<?php include("gallery_slider.php");?>
</div>
<img class="sky" src="slide_text/images/back.png" alt="Blue Sky" />
</li>
<li>
<div class="info">
<h2>Creative Control</h2>
<p>Create unique sliders using CSS3 transitions -- no jQuery knowledge required!</p>
</div>
<img class="sky" src="slide_text/images/bg-clouds.png" alt="Blue Sky" />
<img class="aeroplane" src="slide_text/images/aeroplane.png" alt="Aeroplane" />
</li>
<li>
<div class="info">
<h2>Cutting Edge</h2>
<p>Supports modern browsers, old browsers (IE7+), touch devices and responsive designs</p>
</div>
<img class="sky" src="slide_text/images/bg-clouds.png" alt="Blue Sky" />
<img class="kite" src="slide_text/images/kite.png" alt="Kite" />
</li>
</ul>
</div>
</body>
</html>