2

我正在尝试使用 jQuery Cycle Plugin 幻灯片放映图像,但它不起作用。如何使其可运行。

包含的脚本

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
    <script src="https://malsup.github.com/jquery.cycle.all.js"></script>    

CSS:

 .pics {  
            height:  232px;  
            width:   232px;  
            padding: 0;  
            margin:  0;  
        } 

        .pics img {  
            padding: 15px;  
            border:  1px solid #ccc;  
            background-color: #eee;  
            width:  200px; 
            height: 200px; 
            top:  0; 
            left: 0 
        }

脚本:

  $(function(){
        $('.pics').cycle('fade');
    });​

图片区

          <div class="pics">
                <img src="http://davealger.info/i/1.jpg"  width="200" height="200"  />
                <img src="http://davealger.info/i/2.bmp"  width="200" height="200"  />
                <img src="http://davealger.info/i/3.png"  width="200" height="200" />
            </div>
4

3 回答 3

2

更改https://malsup.github.com/jquery.cycle.all.jshttp://- 或者更好的是,下载插件并节省他可怜的服务器。Google 使用大容量 CDN;他没有。

http://jsfiddle.net/mblase75/ZSJqh/

于 2012-12-04T15:21:51.170 回答
1

如果您设置不将脚本下载到本地,请保持最新。

  1. Cycle.js 被移动。
  2. 不要使用 http:// 或 https://

在这里,这是取自网站的演示并编辑了一点:

<!-- include jQuery library -->
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<!-- include Cycle plugin -->
<script type="text/javascript" src="//cloud.github.com/downloads/malsup/cycle/jquery.cycle.all.latest.js"></script>
<script type="text/javascript">
$(document).ready(function() {
    $('.slideshow').cycle({
        fx: 'fade' 
    });
});
</script>

请注意,cycle.js 的位置
查看演示的源代码是值得的。

于 2012-12-13T03:55:28.267 回答
0
$(function(){
    $('.pics').cycle({fx: 'fade'});
});​

请参阅文档: http: //malsup.com/jquery/cycle/

于 2012-12-04T15:21:34.430 回答