-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
executable file
·32 lines (32 loc) · 1.54 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Spin - Demo</title>
<link rel="stylesheet" type="text/css" href="spin.css">
<script type="text/javascript" src="mootools-core-1.4.5-full-nocompat.js"></script>
<script type="text/javascript" src="mootools-more-1.4.0.1.js"></script>
<script type="text/javascript" src="Source/Spin.js"></script>
<script type="text/javascript">
window.addEvent("domready", function(){
$("featured").spin({
transition:"horizontal-push",
transitionOption: {transition:"quad:in:out",duration:800}
});
});
</script>
</head>
<body>
<div class="container">
<h4>MadFarmer's Spin slider</h4>
<div id="featured">
<div class="content" style="" rel="Caption Slide 1">
<h1>Orbit does content now.</h1>
<h3>Highlight me...I'm text.</h3>
</div>
<a href="" rel="Caption Slide 2"><img src="dummy-images/overflow.jpg" /></a>
<img src="dummy-images/captions.jpg" rel="Caption Slide 3" />
<img src="dummy-images/features.jpg" />
</div>
</div>
</body>
</html>