拖动改变百分比的动画,水平和垂直
JavaScript Code
- <script type="text/javascript">
- $(document).ready(function(){
- $('#slider1').sGlide({
- 'width': 85,
- 'height': 12,
- 'image': 'img/knob.png',
- 'startAt': 70,
- 'colorStart': '#360',
- 'colorEnd': '#693',
- 'buttons': true,
- drag: function(o){
- console.log('drag',o);
- $('.pct').html(Math.round(o.value)+'<sup>%<sup>');
- },
- onButton: function(o){
- console.log('button',o);
- $('.pct').html(Math.round(o.value)+'<sup>%<sup>');
- }
- });
- $('#slider2').sGlide({
- 'startAt': 50,
- 'flat': true,
- 'width': 300,
- 'unit': 'px',
- 'snap': {
- 'points': 5,
- 'markers': true,
- 'onlyOnDrop': true
- },
- 'vertical': true,
- 'showKnob': false
- });
- });
- </script>
原文地址:http://www.freejs.net/article_jquerywenzi_498.html