blob: e42150c62b91b008f89c00b11b611d22ba4b083d (
plain)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
<!DOCTYPE html>
<!--
* Markup for jQuery Orbit Plugin 1.2.3
* www.ZURB.com/playground
* Copyright 2010, ZURB
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
-->
<head>
<meta charset="utf-8" />
<title>Orbit Demo</title>
<!-- Attach our CSS -->
<link rel="stylesheet" href="../orbit-1.2.3.css">
<link rel="stylesheet" href="demo-style.css">
<!-- Attach necessary JS -->
<script type="text/javascript" src="../jquery-1.5.1.min.js"></script>
<script type="text/javascript" src="../jquery.orbit-1.2.3.min.js"></script>
<!--[if IE]>
<style type="text/css">
.timer { display: none !important; }
div.caption { background:transparent; filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000,endColorstr=#99000000);zoom: 1; }
</style>
<![endif]-->
<!-- Run the plugin -->
<script type="text/javascript">
$(window).load(function() {
$('#featured').orbit();
});
</script>
</head>
<body>
<div class="container">
<h4>ZURB's Orbit Slider</h4>
<a href="http://www.zurb.com/playground/orbit-jquery-image-slider">View Docs + Playground for Orbit</a>
<!-- =======================================
THE ACTUAL ORBIT SLIDER CONTENT
======================================= -->
<div id="featured">
<div class="content" style="">
<h1>Orbit does content now.</h1>
<h3>Highlight me...I'm text.</h3>
</div>
<a href=""><img src="dummy-images/overflow.jpg" /></a>
<img src="dummy-images/captions.jpg" data-caption="#htmlCaption" />
<img src="dummy-images/features.jpg" />
</div>
<!-- Captions for Orbit -->
<span class="orbit-caption" id="htmlCaption"><strong>I'm A Badass Caption:</strong> I can haz <a href="#">links</a>, <em>style</em> or anything that is valid markup :)</span>
</div>
</body>
</html>
|