• Resolved macfreak109

    (@macfreak109)


    Hey all,

    I’m using jQuery in its latest version inside a WP 3.8 site (also latest updates).
    The plugin works really great, but I was wondering if there would be a possibility to make it continuously scroll the news even if the mous was hovering over the news?

    This kinda annoys me as I’m using it to display news on a miniPC connected to a giant screen supposed to run stand alone. However, if I boot it up, the mouse kinda sits in the middle of the screen making the jQuery Scroller stop displaying the news section.

    Thanks for any hint!

    https://www.ads-software.com/plugins/jquery-vertical-scroller/

Viewing 3 replies - 1 through 3 (of 3 total)
  • I second that request. Anybody?

    Plugin Author Vamsi Pulavarthi

    (@vamsitech)

    Hi Guys –
    This is a pure workaround. The actual problem is not yet solved but this should work for most needs.

    Replace the script starting at line 283 with this snippet

    <script type="text/javascript">
        jQuery(document).ready(function($) {
    
            var myhtml = $('.vertical_scroller<?php echo $myrandom; ?> .scrollingtext').html();
            for(i=0; i<=20; i++)
            {
                $('.vertical_scroller<?php echo $myrandom; ?> .scrollingtext').append(myhtml);
            }
    
            //create a vertical scroller...
            $('.vertical_scroller<?php echo $myrandom; ?>').SetScroller({
                    velocity: <?php echo $myvelocity ?>, /*50,*/
                    direction: 'vertical',  /*'vertical' */
                    startfrom: '<?php echo $mydirection ?>'
            });
        });
    </script>

    Thanks
    Vamsi

    Plugin Author Vamsi Pulavarthi

    (@vamsitech)

    I finally have a working continuous scroller. I need testers to test out my scroller. If you are interested, please go to my website https://sirisgraphics.com/ and send me an email using the Contact Us page.

    Please be sure to send me your correct email. I will email the plugin as a zip file to you. Not putting the plugin on my site yet.

    Thanks
    Vamsi

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Continuos scrolling even with mouseOver’ is closed to new replies.