html - I want to display the marquee continuosly so that start and end should be continuosly -


i using below code. getting start , end, finding white space. should without start , end gap. should continuously.

i using code:

<marquee direction="right" width=200 height=50>     welcome website. welcome demo.welcome website. welcome demo. </marquee> 

it going right , start. gap there. want display continuously. so, naked eye, should not able find start , end of marquee

please me this

this might you: http://www.dynamicdrive.com/dynamicindex2/crawler/index.htm

i have edited per need in following code, save .html , put downloaded .js file in same folder html file saved. have download .js file link given.

<html> <head> <script type="text/javascript" src="crawler.js">  /* text and/or image crawler script v1.53 (c)2009-2011 john davenport scheuer first seen in http://www.dynamicdrive.com/forums/ username: jscheuer1 - notice must remain legal use */  </script>  </head> <body> <div class="marquee" id="mycrawler"> welcome website. welcome demo.welcome website. welcome tothe demo. </div>  <script type="text/javascript"> marqueeinit({ uniqueid: 'mycrawler', style: {     'padding': '5px',     'width': '450px',      //'border': '0px solid #cc3300' }, inc: 5, //speed - pixel increment each iteration of marquee's movement mouse: 'cursor driven', //mouseover behavior ('pause' 'cursor driven' or false) moveatleast: 2, neutral: 150, persist: true, savedirection: true }); </script> </body> </html> 

Comments