-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanother_example.html
79 lines (63 loc) · 2.41 KB
/
another_example.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
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
73
74
75
76
77
78
79
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>sketch</title>
<style type="text/css" media="screen">
body {background-color:#333;font-family: "Helvetica Neue", sans-serif;}
body > .previous, body > .next {position:absolute;top:1.5em;right:1.5em}
body > .previous {right:4.5em}
body ol {width:400px;margin:4.5em auto 3em auto}
ol li {display:none;height:200px;-moz-border-radius:1.5em;-webkit-border-radius:1.5em;border-radius:1.5em;padding:50px 20px;background-color:#eee;text-align:center;font-size:2em;position:relative;font-weight:bold}
ol li a {font-size:.5em;position:absolute;bottom:1.5em;right:3em;font-weight:normal}
ol li a.previous {right:6em}
ol li em {display:block;font-weight:normal;margin-top:1.5em}
ol li.active {display:block}
a {font-size:.6em;color:#ccc;margin-left:5px}
</style>
<script src="lib/jquery-1.4.2.min.js" type="text/javascript" charset="utf-8"></script>
<script src="lib/jquery.stepper.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript" charset="utf-8">
$(function() {
function transition (event, welcome_text) {
var list = $("#steps");
$(list).find("em").remove();
$(list).find(".active").fadeOut(function() {
$(list)
.trigger(event)
.find(".active").fadeIn(function() {
$("<em/>")
.text(welcome_text)
.hide()
.appendTo(this)
.fadeIn("slow");
});
});
};
// Initialise stepper
// Setup events for moving about
$("#steps").stepper();
$("a.next").bind("click", function() {
transition("nudgeForward", "Zoooooming forward in time");
});
$("a.previous").bind("click", function() {
transition("nudgeBackward", "It's like Back To The Future");
});
});
</script>
</head>
<body>
<a href="#" class="previous">Previous</a>
<a href="#" class="next">Next</a>
<ol id="steps">
<li>First step</li>
<li>Second step</li>
<li>Third one</li>
<li>Fourth</li>
<li>Fifth step</li>
<li>Sixth</li>
<li>Last step</li>
</ol>
</body>
</html>