-
Notifications
You must be signed in to change notification settings - Fork 3
/
example.html
81 lines (69 loc) · 2.9 KB
/
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
80
81
<!DOCTYPE html>
<html>
<head>
<title>Simple Tree Menu Example</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="jquery-simpleTreeMenu.js"></script>
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<link href="jquery-simpleTreeMenu.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="container"><div class="row"><div class="col-md-12">
<h1>Simple Tree Menu Examples</h1>
<div style="width:400px; background-color: white" class="well">
<ul id="demoTree">
<li>
<span class="stm-icon"></span>
<a class="stm-content" href="/html/stm/index.html">Back to Simple Tree Menu</a></span>
</li>
<li>
<span class="stm-icon"></span>
<span class="stm-content">News Sites</span>
<ul>
<li>
<span class="stm-icon"></span>
<a class="stm-content" href="http://news.bbc.co.uk">BBC News</a>
</li>
<li>
<span class="stm-icon"></span>
<a href="http://www.theguardian.com" class="stm-content">This link to The Guardian is also a node</a>
<ul>
<li>
<span class="stm-icon"></span>
<a class="stm-content" href="http://www.theguardian.com/uk/sport">UK Sport</a>
</li>
<li>
<span class="stm-icon"></span>
<a class="stm-content" href="http://www.theguardian.com/uk/business">UK Business</a>
</li>
</ul>
</li>
</ul>
</li>
<li>
<span class="stm-icon"></span>
<span class="stm-content">Embedded Content</span>
<ul>
<li>
<span class="stm-icon"></span>
<span class="stm-content">Your Calendar</span>
<div style="background-color: #A0C050; height: 50px; padding: 10px; border: 2px solid #604030">
(calendar here)
</div>
</li>
<li>
<span class="stm-icon"></span>
<span class="stm-content">An image</span>
<br />
<img src="http://placehold.it/100x100" />
</li>
</ul>
</li>
</ul>
</div>
</div></div></div>
</body>
<script type="text/javascript">
$('#demoTree').simpleTreeMenu();
</script>
</html>