今日は、トップに戻る JS JQ 関数を作成しました。これ以上のナンセンスはありません。写真と真実があります。
コードは非常に簡単です。バグがある場合は、メッセージを残してください。一緒に改善できます。
方法 2:
主なパラメータ:
scrollName: 'scrollUp', // 要素 ID
topDistance: '300', // 要素を表示するまでの上からの距離 (px)
topSpeed: 300, // トップに戻る速度 (ミリ秒)
アニメーション: 'fade', // フェード、スライド、なし
animeInSpeed: 200, // アニメーションの速度 (ミリ秒)
animeOutSpeed: 200, // アニメーション出力速度 (ミリ秒)
scrollText: '先頭にスクロール', // 要素
のテキスト
activeOverlay: false、
// 「トップに戻る」ボタンが表示されたときにスクロールするページの位置を特定するのに役立ちます。
jQuery コード (ScrollUp.js):
$(function () { $.scrollUp({ scrollName: 'scrollUp', // Element ID topDistance: '300', // Distance from top before showing element (px) topSpeed: 300, // Speed back to top (ms) animation: 'fade', // Fade, slide, none animationInSpeed: 200, // Animation in speed (ms) animationOutSpeed: 200, // Animation out speed (ms) scrollText: 'Scroll to top', // Text for element activeOverlay: false, // set css color to display scrollup active point, e.g '#00ffff' }); });