首页 > 编程 > JavaScript > 正文

jquery实现当滑动到一定位置时固定效果

2019-11-20 14:27:23
字体:
来源:转载
供稿:网友
复制代码 代码如下:

<script type="text/javascript">
$.fn.silde = function() {
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",
top: 0,
left:1080,
"margin-left":"0px",

});
} else {
element.css({
top: scrolls,
"margin-left":"20px"
});
}
}else {
element.css({
position: pos,
top: top,
"margin-left":"20px"
});
}
});
};
return $(this).each(function() {
position($(this));

});
};
$("#ding").silde();
</script>
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表