-3

スライダーが機能しない理由を教えてください私は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> 
4

1 に答える 1

1

これらの線はどういう意味ですか?

<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/

于 2012-12-24T17:02:14.327 に答える