小弟没看懂,画红线的这俩块是什么意思

        $(window).scroll(function() {

            if ($(window).scrollTop() >= $(".cent-line-box").offset().top - $(window).height()/2 + 5 && !$(".history-wrap .cent-wrap li").last().hasClass('show')) {

                $(".cent-line-box").addClass('active');

                $(".cent-line-box .point-h").show();

            }else{

                $(".cent-line-box").removeClass('active');

                $(".cent-line-box .point-h").hide();

            }


            $(".history-wrap .cent-wrap li").each(function() {

                var _this = $(this);

                if ($(window).scrollTop() >= $(this).offset().top - $(window).height() + 260) {

                    _this.addClass('show');

                }else{

                    _this.removeClass('show');

                }

            });

        });

https://img4.mukewang.com/5c0620550001eceb11690275.jpg

蛊毒传说
浏览 486回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript