WEB広告運用の困りごとが集まる場所 コミュニティ コミュニティ SPでも最後の設問を回答後にスムーズスクロールを反応させたい

  • widgetマスター

    モデレータ
    2023年8月25日 17:33

    こちらですが、アンカーリンクでのスクロールアニメーションがスマホで動作しないとの事ですが、SmoothScroll のプラグインがスマホ表示によみこまれていないのが原因のようでございます。

    下記を タグ設定 > javascript body に追加いただけますでしょうか?

    <script>
    if(typeof (SmoothScroll) == 'undefined'){
    let tag = document.createElement('script');
    tag.src = "https://production.static.squadbeyond.com/smooth-scroll/16.1.3/smooth-scroll.min.js";
    let firstScriptTag = document.getElementsByTagName('script')[0];
    firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);
    }
    </script>