' + productList[i]["title"] + '
View more
'; } } $(".productList ul").html(str).find("li").each(function () { $(this).css({ "transition": "500ms " + (100 * $(this).index()) + "ms" }); }); setTimeout(function () { $(".productList li").addClass("liShow"); }, 100); } $(".productMenu li:first").addClass("cur"); $(window).scroll(function () { var sT = $(window).scrollTop(); if (firstLoad && sT >$(".row4").offset().top - WIN_HEIGHT * 0.8) { firstLoad = false; getProduct(21); } }); });