-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (32 loc) · 742 Bytes
/
index.html
File metadata and controls
32 lines (32 loc) · 742 Bytes
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>Split Layout w/ Resizable Columns</title>
<script language="JavaScript" type="text/javascript" src="src/splitLayout.js"></script>
</head>
<body>
<div id="container">
<div id="nav">
Navigation Panel
</div>
<div id="content">
Content Panel
</div>
</div>
<script>
// Initialize SplitLayout(initialNavWidth(Number),minimumWidth(Number),navCSS(object),contentCSS(object))
var myLayout = new SplitLayout(200,200,{
"background-color":"#F5F5F5",
"padding":"10px",
"font-family":"Arial,sans-serif",
"font-size":"10pt"
},
{
"background-color":"#FFF",
"padding":"10px",
"font-family":"Arial,sans-serif",
"font-size":"10pt"
})
</script>
</body>
</html>