“MediaWiki:Gadget-Backtotop.js”的版本间的差异

来自希灵百科
跳转至: 导航搜索
(创建页面,内容为“回到顶部: $(function() { var txt = "返回顶部", btn = $('<div/>', { 'text': txt, 'attr': { 'title': t...”
 
(没有差异)

2017年1月18日 (三) 13:00的最新版本

/* 回到顶部 */
$(function() {
    var txt = "返回顶部",
        btn = $('<div/>', {
            'text': txt,
            'attr': {
                'title': txt,
                'class': 'backToTop'
            },
            'css': {
                'user-select': 'none'
            },
            'bind': {
                'click': function() {
                    $("html, body").animate({
                        scrollTop: 0
                    }, 120);
                }
            }
        }).appendTo(document.body);
    $(window).bind('scroll', function() {
        $(document).scrollTop() > 0 ? btn.fadeIn() : btn.fadeOut();
    }).scroll();
});