代码如下
1 2 3 4 5 6 7 8 9 10 11 12 13 | if (nuFormType() == 'browse') { $(window).scroll(function(e) { var scrollLeft = $(window).scrollLeft(); $("[data-nu-column='0']").each(function() { if (scrollLeft > 0) { $(this).css({ 'left': scrollLeft, 'z-index': '100' }); } else { $(this).css({ 'left': 3, 'z-index': '0'}); } }); |
原文链接:https://xiaohost.com/3601.html,转载请注明出处。
评论0