jssor错误箭头排列

时间:2015-07-30 11:08:06

标签: javascript jquery html jssor

我有一个带有jssor滑块的页面car.asp,它包含在index.asp

所以当我直接加载页面car.asp时,我得到了正确位置的箭头

enter image description here

但是当我把这个页面car.asp加载到index.asp时,另一个div我把箭头放错了位置

enter image description here

如何解决这个问题?

也许是因为第3337行的jssor.slider.js语法错误self.$Relocate = function (conainerWidth, containerHeight) { conainerWidth而不是containerWidth

1 个答案:

答案 0 :(得分:2)

$ArrowNavigatorOptions: {}中将$AutoCenter:更改为0

 $ArrowNavigatorOptions: {
       $Class: $JssorArrowNavigator$, 
       $AutoCenter: 0                               
 }

然后你可以用元素

中的css style="top: 20px"来控制箭头
<span u="arrowleft" class="jssora" style="top: 20px; left: 8px;"></span>
<span u="arrowright" class="jssora" style="top: 20px; right: 8px;"></span>