Open romain-granai opened 1 year ago
Is it possible to target a specific marquee on the page and pause it?
Can I init a marquee without adding the class .marquee3k to the element. In the doc it says
Marquee3k.init({ selector: '.selector-name', // define a custom classname });
But that does absolutely nothing.
Is there a way to do somnething like that :
var footerMarquee = Marquee3k.init({ selector: '.footer-marquee, // define a custom classname paused: true, speed: 2 }); $('.footer-marquee').on('mouseover', function(){ footerMarquee.play(); }); $('.footer-marquee').on('mouseleave', function(){ footerMarquee.pause(); });
Did you figure this out? My Marquee has the class is-init but isn't moving ...
Is it possible to target a specific marquee on the page and pause it?
Can I init a marquee without adding the class .marquee3k to the element. In the doc it says
Marquee3k.init({ selector: '.selector-name', // define a custom classname });
But that does absolutely nothing.
Is there a way to do somnething like that :