Javascript Div自动滚动(移动)

Javascript Div自动滚动(移动),javascript,Javascript,我需要能够使一个div从左向右滚动,然后返回到开始或反弹和循环。尽管选择“应用程序”后,滚动停止 我想要滚动的版本可以在网上的etreecycle.co.uk上找到,方法是将页面设置为移动大小,或者在小型设备上查看网站 基本布局为: <div id="scroll-me"> // Only scroll when the page is less then 650px wide. <div id="app-wrapper"> // Changes width to mak

我需要能够使一个div从左向右滚动,然后返回到开始或反弹和循环。尽管选择“应用程序”后,滚动停止

我想要滚动的版本可以在网上的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>
有没有办法在移动设备上实现这一点?
谢谢。

您可以使用媒体查询,请参阅此链接@a,我正在使用媒体查询。我需要使div滚动。