dial.html revision df71f95acec70ebddf0ab97cc1e0ff2b70048017
<html>
<head>
<title>Dial Widget</title>
<!-- Source File and Seed for YUI3-->
<script>
YUI({filter:"raw"}).use("widget", "node-deprecated", "dd-drag", "substitute", "event-mouseenter", "transition", "dial", function(Y) {
var dial = new Y.Dial({
srcNode: ".dial_container",
min:-400,
max:400,
stepsPerRev:365,
value: 80,
diameter: 100
});
dial.render();
dial.focus();
});
</script>
<style>
.intro-sentence{
margin:3em;
}
body{
margin-top:30px;
}
</style>
</head>
<body class="yui3-skin-sam">
<span class="intro-sentence">This is a Dial Widget. It supports keyboard input and screen readers.</span>
<div class="dial_container"></div>
</body>
</html>