我有一个带有jssor滑块的页面car.asp,它包含在index.asp
中所以当我直接加载页面car.asp时,我得到了正确位置的箭头
但是当我把这个页面car.asp加载到index.asp时,另一个div我把箭头放错了位置
如何解决这个问题?
也许是因为第3337行的jssor.slider.js
语法错误self.$Relocate = function (conainerWidth, containerHeight) {
conainerWidth
而不是containerWidth
?
答案 0 :(得分:2)
在$ArrowNavigatorOptions: {}
中将$AutoCenter:
更改为0
$ArrowNavigatorOptions: {
$Class: $JssorArrowNavigator$,
$AutoCenter: 0
}
然后你可以用元素
中的cssstyle="top: 20px"
来控制箭头
<span u="arrowleft" class="jssora" style="top: 20px; left: 8px;"></span>
<span u="arrowright" class="jssora" style="top: 20px; right: 8px;"></span>