Reputation: 881
Hi I am using jquerymarquee and I want to have displayed the entire line of text at the beginning, and scroll onMouseHover, and when the line of text ends, the beginning of the text to appear after a while. Maybe there are other libraries that are able to do it ?
Upvotes: 1
Views: 705
Reputation: 2941
I got it to work as you wanted. It is the same library
which you are using.
I didn't start the marquee onload
, and waited for the user to put his mouse
over the text
. And as the user
puts his mouse
over the text
, marquee
started.
You can check the demo here. http://jsfiddle.net/VJkxe/1/
Upvotes: 1
Reputation: 4328
in the example only..
$('.marquee-with-options').hover(function(e) {
});
dont use..property..pauseOnHover: true
you have to try some thing and if any problem occurs you have to ask here..
Upvotes: 0