返回顶部

下拉浏览长页的网页时,鼠标点击右下角的三角即可快速返回顶部

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name         返回顶部
// @namespace    http://tampermonkey.net/
// @version      1.0.5
// @description  下拉浏览长页的网页时,鼠标点击右下角的三角即可快速返回顶部
// @author       kafukacc
// @match        https://hellogithub.com/
// @icon         none
// @grant        none
// @require  https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js
// ==/UserScript==
$(function () {
        (function () {
            'use strict';
            $("body").append($("<a>△</a>"));
            $("a").addClass("to-top").css({
                "fontSize": "60px",
                "color": "rgba(238, 237, 237, 0.644)"
            }).on("mouseenter", function () {
                $(this).css("color", "gray");
            }).mouseleave(function () {
                $(this).css("color", "rgba(238, 237, 237, 0.644)");
            });

            $.fn.toTop = function (opt) {

                //variables
                var elem = this;
                var win = $(window);
                var doc = $('html, body');

                //Extended Options
                var options = $.extend({
                    autohide: true,
                    offset: 400,
                    speed: 500,
                    position: true,
                    right: 15,
                    bottom: 30
                }, opt);

                elem.css({
                    'cursor': 'pointer'
                });

                if (options.autohide) {
                    elem.css('display', 'none');
                }

                if (options.position) {
                    elem.css({
                        'position': 'fixed',
                        'right': options.right,
                        'bottom': options.bottom,
                    });
                }

                elem.click(function () {
                    doc.animate({
                        scrollTop: 0
                    }, options.speed);
                });

                win.scroll(function () {
                    var scrolling = win.scrollTop();

                    if (options.autohide) {
                        if (scrolling > options.offset) {
                            elem.fadeIn(options.speed);
                        } else elem.fadeOut(options.speed);
                    }

                });

            };

            $('.to-top').toTop();
        })();
    })