jQuery循环动画scrollHorz在chrome中无法正常工作

时间:2014-04-14 06:25:08

标签: jquery html5 jquery-cycle

当图像强制在 Chrome 中的锚标记之间呈现时,jQuery循环 scrollHorz 功能动画无法正常工作。图像从右上角渲染。如果我删除锚标记,它在chrome中工作正常。它在mozilla中正常工作。       enter image description here

1 个答案:

答案 0 :(得分:1)

我认为你应该在样式表上添加图片大小。

  • 以下是您的来源

    .img-responsive, .thumbnail>img, .thumbnail a>img, 
    .carousel-inner>.item>img, .carousel-inner>.item>a>img
           {max-width:100%;height:auto;}
    

更改源代码如下

 .img-responsive, .thumbnail>img, .thumbnail a>img, 
    .carousel-inner>.item>img, .carousel-inner>.item>a>img
                 {width:780px;height:380px;}
  • 您可以参考此page