基本信息
源码名称:Jquery 回到顶部 插件 示例源码下载
源码大小:0.05M
文件格式:.rar
开发语言:CSS
更新时间:2014-04-15
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
/* scrollUp Minimum setup */
// $(function () {
// $.scrollUp();
// });
// scrollUp full options
$(function () {
$.scrollUp({
scrollName: 'scrollUp', // Element ID
scrollDistance: 300, // Distance from top/bottom before showing element (px)
scrollFrom: 'top', // 'top' or 'bottom'
scrollSpeed: 300, // 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: false, // Set true to use image
activeOverlay: false, // Set CSS color to display scrollUp active point, e.g '#00FFFF'
zIndex: 2147483647 // Z-Index for the overlay
});
});
// Destroy example
$(function(){
$('.destroy').click(function(){
$.scrollUp.destroy();
})
});