..こんにちは皆さん、jquery は本当に初めてで、この問題を修正するのに苦労しています。問題は...最初のコンテンツに戻る効果ではなく、無限ループが必要です。
function initCarousel() {
jQuery('.link-block').scrollGallery({
mask: 'div.mask',
slider: 'div.slideset',
slides: 'div.slide',
btnPrev: 'a.prev',
btnNext: 'a.next',
autoRotation: true,
//displayTime: 5000,
circularRotation: true,
switchTime: 3000,
animSpeed: 500
…………
// jquery plugin
$.fn.scrollGallery = function(opt){
return this.each(function(){
$(this).data('ScrollGallery', new ScrollGallery($.extend(opt,{holder:this})));
});
};
}(jQuery));
ここの誰かが助けてくれることを願っています:)