Variable Visions

jQuery slidding text part 2

Published Mon. Feb. 25, 2013

Use setInterval, .effect, and .delay to create this jQuery sliding text marquee

<script type="text/javascript">       
    jQuery(function(){
        window.setInterval(function(){
            $('.ticker').effect('slide', {direction: "right"}, 5000).delay(5000);}
        ,5000) 
    });
</script>