Files
openlayers/master/examples/test_SpinWheel-1slot.html
Éric Lemoine 5d14b9e2d4 Updated
2013-02-20 10:38:25 +01:00

29 lines
1.2 KiB
HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<!--
A SpinWheel that has only one slot.
padding-right:4px is to adjust the right border width.
Note that this test case does not load dojox.mobile themes such as iphone.css.
Nor does it load the dojox.mobile base, i.e., not requiring "dojox.mobile".
-->
<head>
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=no"/>
<meta name="apple-mobile-web-app-capable" content="yes" />
<title>One Slot SpinWheel</title>
<link href="../themes/common/SpinWheel.css" rel="stylesheet">
<script type="text/javascript" src="../../../dojo/dojo.js" djConfig="parseOnLoad: true"></script>
<script language="JavaScript" type="text/javascript">
dojo.require("dojox.mobile.parser");
dojo.require("dojox.mobile.SpinWheel");
dojo.require("dojox.mobile.compat");
</script>
</head>
<body>
<div dojoType="dojox.mobile.SpinWheel" style="width:200px;padding-right:4px;">
<div dojoType="dojox.mobile.SpinWheelSlot"
labelFrom="3000" labelTo="3100" style="text-align:center;width:100%;"></div>
</div>
</body>
</html>