You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.1 KiB
41 lines
1.1 KiB
<!DOCTYPE html> |
|
<html> |
|
<head> |
|
<meta http-equiv="Content-type" content="text/html; charset=utf-8"/> |
|
<title>FixedSplitter Test</title> |
|
|
|
<link href="../themes/iphone/FixedSplitter.css" rel="stylesheet"/> |
|
<script type="text/javascript" src="../../../dojo/dojo.js" data-dojo-config="async: true, parseOnLoad: true"></script> |
|
|
|
<script type="text/javascript"> |
|
require([ |
|
"dojox/mobile/parser", |
|
"dojox/mobile/FixedSplitter", |
|
"dojox/mobile/Pane" |
|
]); |
|
</script> |
|
|
|
<style type="text/css"> |
|
html, body{ |
|
width: 100%; |
|
height: 100%; |
|
padding: 0px; |
|
margin: 0px; |
|
overflow: hidden; |
|
} |
|
</style> |
|
</head> |
|
<body> |
|
<div data-dojo-type="dojox.mobile.FixedSplitter" data-dojo-props='orientation:"V"'> |
|
<div data-dojo-type="dojox.mobile.Pane" style="background-color:cyan;height:200px;"> |
|
pane #1 (height=200px) |
|
</div> |
|
<div data-dojo-type="dojox.mobile.Pane" style="background-color:yellow;height:100px;border-bottom:1px solid black"> |
|
pane #2 (height=100px) |
|
</div> |
|
<div data-dojo-type="dojox.mobile.Pane" style="background-color:pink;"> |
|
pane #3 |
|
</div> |
|
</div> |
|
</body> |
|
</html>
|
|
|