-2

这是代码

<script type="text/javascript">  
    $(window).load(function() {  
        $('.flexslider').flexslider({  
            animation: "fade"  
       });  
       $().UItoTop({ easingType: 'easeOutQuart' });  
   });    
 </script>
4

1 回答 1

1

一切对我来说都很好,请检查是否包含所有必要的资源,在我的示例中是:

  1. 显然是 jQuery(1.9.1,但我也尝试过旧版本和新版本)
  2. 相关脚本和css
  3. 滑块使用的图像的存在

脚本:

<script type='text/javascript' src="http://flexslider.woothemes.com/js/jquery.flexslider.js"></script> 
<script type='text/javascript' src="http://flexslider.woothemes.com/js/jquery.easing.js"></script> 
<script type='text/javascript' src="http://flexslider.woothemes.com/js/jquery.mousewheel.js"></script> 
<script type='text/javascript' src="http://lab.mattvarone.com/projects/jquery/totop/js/jquery.ui.totop.js"></script> 

CSS:

<link rel="stylesheet" type="text/css" href="http://flexslider.woothemes.com/css/flexslider.css"> 
<link rel="stylesheet" type="text/css" href="http://lab.mattvarone.com/projects/jquery/totop/css/ui.totop.css">

工作小提琴:http: //jsfiddle.net/IrvinDominin/cusuy/

于 2013-04-21T13:06:50.400 回答