我需要能够从左到右进行div滚动,然后回到开始或反弹并循环。虽然选择'app'时滚动停止。
我想滚动的版本可以在网站上的etreecycle.co.uk上找到,方法是将页面设为移动尺寸或在小型设备上查看网站。
基本布局是;
<div id="scroll-me"> // Only scroll when the page is less then 650px wide.
<div id="app-wrapper"> // Changes width to make the contence responcive, this will be 3240px wide and 270px high when it is scrolling.
<div id="app"></div> // the apps have the hover tag, when hovering the scrolling needs to stop. (Or click on a mobile device.)
<div id="app"></div>
<div id="app"></div>
<div id="app"></div>
<div id="app"></div>
<div id="app"></div>
</div>
</div>
有没有办法在移动设备上运行? 谢谢。