JS 设置网页下滑时出现的显示、隐藏div事件

1.HTML:设置body 的 onscroll事件(在元素滚动时执行)


    

2.JS代码

function get (){
	//滚动条距离顶部的距离
	var topverb1 = document.documentElement.scrollTop;
        //body文本内容的高度,也可以直接设置文本的高度但不能加 px
	var topverb2 = document.body.scrollHeight;
        //var topverb2 = document.body.scrollHeight="300";
	if(topverb1>=topverb2/3){
		document.getElementById("gethideen").style.display="inherit";
	}else{
		document.getElementById("gethideen").style.display="none";
	}
}

3.jQuery简化代码

	//监听滚动条事件

	$(window).scroll(function () {
		var topp = $(document).scrollTop();
		if (topp >= 200) {
			$(".fixed").css("top", "-132px").css("transition", ".8s");
		} else {
			$(".fixed").css("top", "0").css("transition", ".8s");
		}

	});

 

你可能感兴趣的:(JS,jQuery)