Kirkusscott
10/5/2017 - 2:23 PM

moving arrow

moving arrow

<script type="text/javascript">
//Include your code below this line

//slide the arrow
                    var vibrate = function() {
                         $('#arrow').animate({
                              'background-position-x': '+=50'
                         }, 'fast').animate({
                              'background-position-x': '-=50'                             
                         }, 'fast');
                    };
                   
                    interval = setInterval(vibrate,50);
</script>