12345678910111213141516171819202122232425262728 |
- $(function(){
- setInterval(function(){
- $('#pacman').toggleClass('pacman_eats');
- }, 300);
- // speed in milliseconds
- var scrollSpeed = 20;
- var bgscroll = '';
- // set the direction
- var direction = 'h';
- // set the default position
- var current = 0;
- //Calls the scrolling function repeatedly
- setInterval(function(){
- // 1 pixel row at a time
- current -= 1;
- // move the background with backgrond-position css properties
- $('body').css("backgroundPosition", (direction == 'h') ? current+"px 0" : "0 " + current+"px");
- }, scrollSpeed);
- });
|