-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (66 loc) · 2.75 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
<!DOCTYPE html>
<html en>
<head>
<title>torus.js samples</title>
<link href="scripts/nivo-slider/themes/default/default.css" rel="stylesheet" />
<link href="scripts/nivo-slider/nivo-slider.css" rel="stylesheet" />
<link href="Content/themes/base/jquery-ui.css" rel="stylesheet" />
<link href="Content/layout-default-latest.css" rel="stylesheet" />
<link href="css/site.css" rel="stylesheet" />
<style type="text/css">
h2 {
font-family: Calibri;
font-weight: 800;
font-size: 28pt;
line-height: 0.5;
}
.nivoSlider img {
position: absolute;
top: 0px;
left: 0px;
display: none;
height: 300px !important;
width: 300px !important;
}
.nivoSlider {
height: 300px !important;
width: 300px !important;
}
</style>
<script data-main="./scripts/main" src="./scripts/require.js"></script>
</head>
<body data-bind="jqueryLayout: { spacing_open: 0, spacing_closed: 0, resizable:true, closable:true, north__size: 80, west__size: 190, east__size: 500, south__size: 60, south__initClosed:true}" >
<div class="ui-layout-north">
<h2>torus.js</h2>
</div>
<div class="ui-layout-west">
<div class="tile" data-bind="click:showAnimateLayout">Example showing <b>Knockout.js</b> based template layout 2 layout animation</div>
<div class="tile" data-bind="click:showBase64">Example showing <b>Base64</b></div>
<div class="tile" data-bind="click:showGallery">Slide Show <b>Gallery</b></div>
<div class="tile" data-bind="click:showDatePicker">Demo of databound <b>Date Picker</b></div>
<div class="tile" data-bind="click:showFileUpload">Demo of databound <b>File Upload</b> with client side resize.</div>
<div class="tile" data-bind="click:showSouth">Show Popup Panel.</div>
</div>
<div class="ui-layout-center">
<!-- Templates -->
<div data-bind="with:animateLayout">
<div data-bind="template:{ name:'layout-animation-demo',data:$data}"></div>
</div>
<div data-bind="with:base64">
<div data-bind="template:{ name:'base64-demo', data: $data }"></div>
</div>
<div data-bind="with:gallery">
<div data-bind="template:{ name:'nivo-demo', data: $data}"></div>
</div>
<div data-bind="with:datePicker">
<div data-bind="template:{ name:'date-picker', data: $data}"></div>
</div>
<div data-bind="with:fileUpload">
<div data-bind="template:{ name:'file-upload', data: $data}"></div>
</div>
</div>
<div class="ui-layout-south">
<p>This is the south pane</p>
</div>
</body>
</html>