0

这个插件(https://github.com/markgoodyear/scrollup)有一个 kill 方法......

$.scrollUp.destroy();

有没有办法扭转它,让它不死,可以这么说...j/k

我试图将它附加到点击功能,但它不起作用!

$(function() {
            $('.ps-toolbar-close').click(function() {
                $.scrollUp({
                    scrollName: 'scrollUp', // Element ID
                    scrollDistance: 300, // Distance from top/bottom before showing element (px)
                    scrollFrom: 'top', // 'top' or 'bottom'
                    scrollSpeed: 3000, // Speed back to top (ms)
                    easingType: 'linear', // Scroll to top easing (see http://easings.net/)
                    animation: 'fade', // Fade, slide, none
                    animationInSpeed: 200, // Animation in speed (ms)
                    animationOutSpeed: 200, // Animation out speed (ms)
                    scrollText: 'Scroll to top', // Text for element, can contain HTML
                    scrollTitle: false, // Set a custom <a> title if required. Defaults to scrollText
                    scrollImg: true, // Set true to use image
                    activeOverlay: true, // Set CSS color to display scrollUp active point, e.g '#00FFFF'
                    zIndex: 2147483647 // Z-Index for the overlay
                });
            });
        });
4

0 回答 0