发布时间:2017-12-02 21:44:45编辑:丝画阁阅读(899)
//产品详情页
$(function () {
//大图小图切换(产品主图)
$(".smallImg img").hover(function () {
$(this).addClass("on").siblings().removeClass("on");
$(".bigImg img").hide();
$(".bigImg img").eq($(this).index()).show();
});
//页面滚动fixed
var toTopHeight = $(".proRight").offset().top;
var sideBottomTop = $(".duoweizi_bottom").offset().top - $(".proRight").height() - 30;
function rightFixed() {
if ($(document).scrollTop() > toTopHeight && $(document).scrollTop() < sideBottomTop) {
$(".proRight").removeClass("absBtm").addClass("fixed");
}
else if ($(document).scrollTop() >= sideBottomTop) {
$(".proRight").addClass("absBtm");
}
else {
$(".proRight").removeClass("fixed absBtm");
}
};
rightFixed();
//页面滚动
$(window).scroll(function () {
var _sideBottomTop = $(".duoweizi_bottom").offset().top - $(".proRight").height() - 30;
sideBottomTop = _sideBottomTop >= sideBottomTop ? _sideBottomTop : sideBottomTop;
rightFixed();
});
//产品小图第一个class on
$(".smallImg img").eq(0).addClass("on");
});
关键字:
本站部分内容来源网络及网友上传,本站未必能一一鉴别其是否为公共版权或其版权归属,如果您认为侵犯您的权利,本站将表示非常抱歉!
请您速联系本站,本站一经核实,立即删除。删文删帖联系【2789291421@qq.com】