我需要JavaScript帮助。
我有这个滑块脚本:
stepcarousel.setup({
galleryid: 'mygallery', //id of carousel DIV
beltclass: 'belt', //class of inner "belt" DIV containing all the panel DIVs
panelclass: 'panel', //class of panel DIVs each holding content
autostep: {
enable:true,
moveby:1,
pause:3000
},
panelbehavior: {
speed:500,
wraparound:false,
wrapbehavior:'slide',
persist:true
},
defaultbuttons: {
enable: true,
moveby: 1,
leftnav: ['arl.png', -5, 80],
rightnav: ['arr.png', -20, 80]
},
statusvars: ['statusA', 'statusB', 'statusC'], //register 3 variables that contain current panel (start), current panel (last), and total panels
contenttype: ['inline'] //content setting ['inline'] or ['ajax', 'path_to_external_file']
})
我实际上希望defaultbuttons
有一个类(例如class="defaultbuttons"
)
因为我不能访问HTML,因为脚本是“回复”的。我想加载......
我明白了:
<img src="arl.png"
title="Back 1 panels"
style="z-index: 50;
position: absolute;
left: 3px;
top: 88px;
cursor: pointer;
opacity: 1;"
>
我想添加一个简单的类来做进一步的样式。 非常感谢你的帮助;)
答案 0 :(得分:1)
我明白了。我应该深入了解js ..我可以找到这个
<img src="'+config.defaultbuttons.leftnav[0]+'">
然后,问题解决了!
谢谢大家的提示和帮助;)