jQuery サイクルと PageAnchorBuilder を使用して、サムネイルの順序付けられていないリストを生成しています。私が求めているのは、複数の ul で表示できるかどうか、おそらくそれぞれに 6 つの li があるかどうかだと思いますか?
どうすればこれを達成できるか、誰にも分かりますか?
$('#slideshow').before('<ul id="nav">').cycle({
fx: 'turnDown',
speed: 'fast',
timeout: 0,
pager: '#nav',
// callback fn that creates a thumbnail to use as pager anchor
pagerAnchorBuilder: function(idx, slide) {
return '<li><a href="#"><img src="' + slide.src + '" width="50" height="50" /></a></li>';
}
});