jqueryAPI回顾
很久没有写JQ了,很多API忘得差不多了,今天正好做一个电商项目,用JQ,复习一下
a.左边一个卡片,鼠标滚动到一定高度吸顶,也叫粘性布局
.detail-wrap .fixed { position: fixed; top: 0; }
$(window).bind("scroll", function(){ var top = $(this).scrollTop(); // 当前窗口的滚动距离 console.log(top) if(top>=200){ $(".dv2-left").addClass("fixed"); }else{ $(".dv2-left").removeClass("fixed"); } });
dv2-left就是这个卡片的class