Jquery Slider连续滑动在上侧

时间:2014-04-12 05:29:31

标签: javascript jquery

我想创建一个滑块,连续向上滑动,箭头按钮在底部和底部这里我使用此代码,但这不会在上部幻灯片上滑动

 <script class="secret-source">
    jQuery(document).ready(function($) {

      $('#banner-slide').bjqs({
        animtype      : 'slide',
        height        : 320,
        width         : 620,
        responsive    : true,
        randomstart   : true
      });

    });
  </script>

使用bjqs.1.3.min.js

我现在无法上传我的图片

图片是我的滑块的演示,任何人都可以帮我找到这个滑块

1 个答案:

答案 0 :(得分:0)

请尝试使用jquery-ui滑块链接https://jqueryui.com/slider/#slider-vertical

和代码是

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>jQuery UI Slider - Vertical slider</title>
  <link rel="stylesheet" href="//code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css">
  <script src="//code.jquery.com/jquery-1.10.2.js"></script>
  <script src="//code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
  <link rel="stylesheet" href="/resources/demos/style.css">
  <script>
  $(function() {
    $( "#slider-vertical" ).slider({
      orientation: "vertical",
      range: "min",
      min: 0,
      max: 100,
      value: 60,
      slide: function( event, ui ) {
        $( "#amount" ).val( ui.value );
      }
    });
    $( "#amount" ).val( $( "#slider-vertical" ).slider( "value" ) );
  });
  </script>
</head>
<body>

<p>
  <label for="amount">Volume:</label>
  <input type="text" id="amount" style="border:0; color:#f6931f; font-weight:bold;">
</p>

<div id="slider-vertical" style="height:200px;"></div>


</body>
</html>