Spinner: Adding overflow demo

This commit is contained in:
jzaefferer 2010-11-02 16:41:11 +01:00
parent 345592ff4a
commit fceb70d526
2 changed files with 48 additions and 0 deletions

View File

@ -13,6 +13,7 @@
<li><a href="currency.html">Currency</a></li> <li><a href="currency.html">Currency</a></li>
<li><a href="latlong.html">Map</a></li> <li><a href="latlong.html">Map</a></li>
<li><a href="mousewheel-disabled.html">Mousewheel Disabled</a></li> <li><a href="mousewheel-disabled.html">Mousewheel Disabled</a></li>
<li><a href="overflow.html">Overflow</a></li>
</ul> </ul>
</div> </div>
</body> </body>

View File

@ -0,0 +1,47 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery UI Spinner - Default functionality</title>
<link type="text/css" href="../../themes/base/jquery.ui.all.css" rel="stylesheet" />
<script type="text/javascript" src="../../jquery-1.4.3.js"></script>
<script type="text/javascript" src="../../external/jquery.mousewheel-3.0.4.js"></script>
<script type="text/javascript" src="../../ui/jquery.ui.core.js"></script>
<script type="text/javascript" src="../../ui/jquery.ui.widget.js"></script>
<script type="text/javascript" src="../../ui/jquery.ui.button.js"></script>
<script type="text/javascript" src="../../ui/jquery.ui.spinner.js"></script>
<link type="text/css" href="../demos.css" rel="stylesheet" />
<script type="text/javascript">
$(function() {
$("#spinner").spinner({
spin: function(event, ui) {
if (ui.value > 10) {
$(this).spinner("value", -10);
return false;
} else if (ui.value < -10) {
$(this).spinner("value", 10);
return false;
}
}
});
});
</script>
</head>
<body>
<div class="demo">
<p>
<label for="spinner">Select a value:</label>
<input id="spinner" name="value" />
</p>
</div>
<div class="demo-description">
<p>
Overflowing spinner restricted to a range of -10 to 10.
For anything above 10, it'll overflow to -10, and the other way round.
</p>
</div>
</body>
</html>