“吸頂”效果

StoneVivi發表於2020-11-13

“吸頂”效果

“吸頂”效果是比較常見的一種樣式效果。

.fixed {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
}
$(window).scroll(function () {
	var documentH = $(document).height()
	var clientW = $(window).width()
	var clientH = $(window).height()
	var titleTop = clientW / 750 * 539
	var nowTop = $(document).scrollTop()
	if (nowTop - titleTop > 0) {
		// if (documentH - nowTop - clientH < 3) {
		//	
		//} else {
		//	$(ele).css({position: 'fixed'})
		//}
		$(ele).addClass('fixed')
	} else {
		$(ele).removeClass('fixed')
	}
})

相關文章