You cannot scroll images continuously using the marquee HTML tag - it must have JavaScript to scroll continuously.
This forum has a crawler.js JavaScript plugin available on the dynamic disk forum. This plugin was created by John Davenport Scheyer and over time has been modified to fit new browsers.
I also embedded this plugin in my blog to document all the steps for using this plugin. Here is a sample code:
<head> <script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script> <script src="assets/js/crawler.js" type="text/javascript" ></script> </head> <div id="mycrawler2" style="margin-top: -3px; " class="productswesupport"> <img src="assets/images/products/ie.png" /> <img src="assets/images/products/browser.png" /> <img src="assets/images/products/chrome.png" /> <img src="assets/images/products/safari.png" /> </div>
Here is the plugin configuration:
marqueeInit({ uniqueid: 'mycrawler2', style: { }, inc: 5, //speed - pixel increment for each iteration of this marquee movement mouse: 'cursor driven', //mouseover behavior ('pause' 'cursor driven' or false) moveatleast: 2, neutral: 150, savedirection: true, random: true });
source share