I have a continuous image scroll (marquee) in html. I want to create a marquee that should stop when mouse over event activated and the images should set to its starting position. on mouse out the marquee should have to start scrolling again.
How could i create it ? is there any methode in JQUERY?
You haven't given much information to work with in your question, but fundamentally you'll probably want to hook the
mouseenter
andmouseleave
events on the marquee. (jQuery provides them for browsers that don't support them natively.)