本文实例讲述了jQuery简单实现页面元素置顶时悬浮效果的方法。分享给大家供大家参考,具体如下:
一、JS Code:
top) {
if (window.XMLHttpRequest) {
element.css({
position: "fixed",top: 0
});
} else {
element.css({
top: scrolls
});
}
} else {
element.css({
position: pos,top: top
});
}
});
};
return $(this).each(function () {
position($(this));
});
};
//绑定
$("#float").smartFloat();
二、Html Code:
置顶时悬浮的区域