我试图找出如何用实际图像替换链接“上一个”和“下一个”(我想使用小箭头图标)。
$('#s2').cycle({
fx: 'fade',
speed: 'fast',
timeout: 0,
next: '#next2', <-- use small PNG image instead?
prev: '#prev2' <-- use small PNG image instead?
});
我在这里指的是 Malsup 示例:http: //jquery.malsup.com/cycle/int2.html。有没有办法做到这一点?那些 next2, prev2 类是我可以在 CSS 中单独设置样式的类吗?
谢谢JM