ギャラリーを水平にスクロールしようとしていますが、ボタンを離すと停止します。私が考えていた別のオプションは、一度に 1 つの写真だけがコンテナーに収まるようにギャラリーを小さくし、次の写真に移動するためのボタンを追加することです。今のところ、これを機能させるにはどうすればよいですか?サイトはこちらです。
//Scrolling
var amount = '';
function scroll() {
$('#photosContainer').animate({
scrollLeft: amount
}, 100, 'linear',function() {
if (amount != '') {
scroll();
}
});
}
$('#scrollDown').mousedown(function() {
amount = '+=10';
scroll();
});
$('#scrollDown').mouseup(function(){
$(this).stop(true);
});
$('#scrollUp').mousedown(function() {
amount = '-=10';
scroll();
});
$('#scrollUp').mouseup(function(){
$(this).stop(true);
});