アンカーをナビゲートするリンクを作成していますが、スクロールにアニメーションを追加したいと考えています
つまり...1000,'easeInOutExpo'
しかし、それを機能させる方法を理解できないようです。
元のコードは次のとおりです。
<a href="#" onclick="goToNext();return false;">===></a>
<script>
var max = 5;
function goToNext() {
var hash = String(document.location.hash);
if (hash && hash.indexOf(/box/)) {
var newh = Number(hash.replace("#box",""));
(newh > max-1) ? newh = 0 : void(null);
document.location.hash = "#box" + String(newh+1);
} else {
document.location.hash = "box1";
}
}
</script>
どんな助けでも大歓迎です!