滑块不工作

时间:2012-12-24 16:59:46

标签: jquery-ui jquery jquery-plugins jquery-selectors

你可以告诉我为什么我的滑块无法工作 我已经把所有资源都包含在js小提琴中,然后它也不起作用 提供下面的小提琴链接

http://jsfiddle.net/YakV7/2/

实际演示

http://tympanus.net/Development/ParallaxContentSlider/

  <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
        <script type="text/javascript" src="js/jquery.cslider.js"></script>
        <script type="text/javascript">
            $(function() {

                $('#da-slider').cslider();

            });
        </script> 

1 个答案:

答案 0 :(得分:2)

这些线是什么意思?

<link rel="stylesheet" type="text/css" href="css/demo.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<script type="text/javascript" src="js/modernizr.custom.28468.js"></script>
<script type="text/javascript" src="js/jquery.cslider.js"></script>

将其更改为实际路径。

<link rel="stylesheet" type="text/css" href="http://tympanus.net/Development/ParallaxContentSlider/css/demo.css">
<link rel="stylesheet" type="text/css" href="http://tympanus.net/Development/ParallaxContentSlider/css/style.css">
<script type="text/javascript" src="http://tympanus.net/Development/ParallaxContentSlider/js/modernizr.custom.28468.js"></script>
<script type="text/javascript" src="http://tympanus.net/Development/ParallaxContentSlider/js/jquery.cslider.js"></script>

或者添加:

<base href="http://tympanus.net/Development/ParallaxContentSlider/" />

同样的工作小提琴:http://jsfiddle.net/YakV7/7/