现在的位置: 首页 > 综合 > 正文

js页面滚动浮动层智能定位(jQuery)实现

2013年10月02日 ⁄ 综合 ⁄ 共 529字 ⁄ 字号 评论关闭

如有不明白的地方欢迎加QQ群14670545 探讨

///js页面滚动浮动层智能定位(jQuery)实现
///调用:$("#popfloat").smartFloat($("#mainInfo").width() + 21);
$.fn.smartFloat = function(width_p) {
    var position = function(element) {
        var top = element.position().top, pos = element.css("position");
        $(window).scroll(function() {
            var scrolls = $(this).scrollTop();
            if (scrolls > top) {
                if (window.XMLHttpRequest) {
                    element.css({
                        position: "fixed",
                        width: width_p,
                        top: 0
                    });
                } else {
                    element.css({
                        top: scrolls
                    });
                }
            } else {
                element.css({
                    position: "", //absolute
                    top: top
                });
            }
        });
    };
    return $(this).each(function() {
        position($(this));
    });
};

抱歉!评论已关闭.