sim.html revision 2359c3473704e75eab6013de1f1fe324c36521d0
<html>
<head>
<title>sim</title>
<!-- Source File and Seed for YUI3-->
</head>
<style>
.foo {
/* position:absolute;
top:100px;
left:100px;
*/
margin:100px auto;
border:solid 1px #f00;
width:200px;
height:200px;
}
</style>
<body class="yui3-skin-sam">hello
<div class="dial-container foo"></div>
</body>
</html>
<script>
YUI({filter:'raw'}).use("dial", function(Y) { //, filter:'raw' this make it really hard to clear cache on iPad
var dial = new Y.Dial({
min: 0,
max: 100,
stepsPerRevolution: 100,
value: 0,
diameter: 100,
decimalPlaces:0
});
dial.render(".dial-container");
});
</script>