-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·89 lines (78 loc) · 4.58 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
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
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html>
<head>
<title>Fibonacci Brainteaser</title>
<link rel="stylesheet" type="text/css" href="reset.css" />
<link rel="stylesheet" type="text/css" href="style.css" />
<link href='http://fonts.googleapis.com/css?family=Arapey:400italic,400' rel='stylesheet' type='text/css' />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
<script type="text/javascript" src="http://use.typekit.com/tqt4yxq.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
<script type="text/javascript" src="js/android_fix_sortable.js"></script>
</head>
<body>
<div class="wrapper">
<div class="column_sm">
<div id="logo">
<img id="spiral" src="images/spiral_v2.png" alt="fibonacci spiral" />
</div>
<div id="controls" class="signs">
<h2 class="string1">Controls</h2>
<ul id="justSomeHTML" class="rollup1 controls">
<li id="section-9"><span class="hide">Box no. </span>9 <div class="slider"><div class="knob"></div><div class="targetLeft"></div><div class="targetRight"></div></div></li>
<li id="section-8"><span class="hide">Box no. </span>8</li>
<li id="section-7"><span class="hide">Box no. </span>7</li>
<li id="section-6"><span class="hide">Box no. </span>6</li>
<li id="section-5"><span class="hide">Box no. </span>5</li>
<li id="section-4"><span class="hide">Box no. </span>4</li>
<li id="section-3"><span class="hide">Box no. </span>3</li>
<li id="section-2"><span class="hide">Box no. </span>2</li>
<li id="section-1"><span class="hide">Box no. </span>1</li>
</ul>
</div>
<div id="rules" class="signs">
<h2 class="string2">Rules</h2>
<ul class="rollup2">
<li>You may change the order of the squares. <em>(HTML)</em></li>
<li>You may float each thing to the left or to the right. <em>(CSS)</em></li>
<li>Make a spiral.</li>
<li><em>Fame and fortune await.</em></li>
</ul>
</div>
<div id="more" class="signs">
<h2 class="string3">More</h2>
<ul class="rollup3">
<li><a href="fibonacci_puzzle.zip">Download</a> and try it yourself.</li>
<li>Arrange the nine golden sections into a <a href="http://en.wikipedia.org/wiki/File:Fibonacci_spiral_34.svg">Fibonacci spiral.</a></li>
<li>It might be impossible.</li>
</ul>
</div>
</div>
<div class="column_lg">
<div id="header">
<h1>Fibonacci Brainteaser</h1>
<h2>Easy As 1 1 2 3</h2>
<p>Use the controls on the left to adjust the order and alignment of each square. Make the squares go 'round like the beloved Fibonacci spiral.</p>
</div>
<div id="goldenRectangle" class="clearfix">
<ul id="justSomeHTML" class="rollup1 controls">
<li id="section-9"><span class="hide">Box no. </span>9</li>
<li id="section-8"><span class="hide">Box no. </span>8</li>
<li id="section-7"><span class="hide">Box no. </span>7</li>
<li id="section-6"><span class="hide">Box no. </span>6</li>
<li id="section-5"><span class="hide">Box no. </span>5</li>
<li id="section-4"><span class="hide">Box no. </span>4</li>
<li id="section-3"><span class="hide">Box no. </span>3</li>
<li id="section-2"><span class="hide">Box no. </span>2</li>
<li id="section-1"><span class="hide">Box no. </span>1</li>
</ul>
</div>
</div>
<div id="footer" class="clearfix">
by Joey and Emma
<span id="date">2011</span>
</div>
</div>
</body>
</html>