Jquery JavaScript DHTML





  jQuery UI Slider - Multiple sliders
  
  
  
  
  
  
    #demo-frame > div.demo { padding: 10px !important; }
    #eq span {
      height:120px; float:left; margin:15px
    }
  
  
  $(function() {
    // change defaults for range, animate and orientation
    $.extend($.ui.slider.defaults, {
      range: "min",
      animate: true,
      orientation: "vertical"
    });
    // setup master volume
    $("#master").slider({
      value: 60,
      orientation: "horizontal"
    });
    // setup graphic EQ
    $("#eq > span").each(function() {
      // read initial values from markup and remove that
      var value = parseInt($(this).text());
      $(this).empty();
      $(this).slider({
        value: value
      })
    });
  });
  





Master volume





Graphic EQ



  88
  77
  55
  33
  40
  45
  70



Combine horizontal and vertical sliders, each with their own options, to create the UI for a music player.