希望我不要创建一些票的双份……我是 JS 的新手,所以我希望有人已经尝试过这样做。
我正在尝试像这个例子一样进行无限滚动:http: //scrollmagic.io/examples/advanced/infinite_scrolling.html
我尝试在接近时“捕捉”窗口顶部的方块,但不要像滑动站点那样强制它,只是在用户停止滚动/触摸(移动设备)时平滑......</p>
我正在尝试删除第一个方格,当新收费页面中的最大 X 方格时...</p>
我尽我最大的努力,我确信我的代码没有真正的共享兴趣。
有一个代码笔,我可以在其中复制代码: https ://codepen.io/Flynmcfly/pen/KKyReLw
<div id="content-wrapper">
<div id="example-wrapper">
<section class="scrollContent">
<section id="titlechart">…</section>
<section class="demo dynamicContent">
<div id="content">
<div class="box1" style="background-color: rgb(235, 210, 33);"></div>
<div class="box1" style="background-color: rgb(87, 220, 70);"></div>
<div class="box1" style="background-color: rgb(142, 21, 139);"></div>
<div class="box1" style="background-color: rgb(105, 109, 37);"></div>
<div class="box1" style="background-color: rgb(185, 221, 165);"></div>
</div>
<div id="loader">
LOADING...
</div>
</section>
</div>
</div>
</div>
希望有人能在这个练习中帮助我……</p>