Advertisement
Guest User

Untitled

a guest
Apr 30th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. // Section bg color cycling
  2. $('.animated-bg').each(function(){
  3. var $this = $(this),
  4. colors = ['#ec008c', '#00bcc3', '#5fb26a', '#fc7331'];
  5.  
  6. setInterval(function(){
  7. var color = colors.shift();
  8. colors.push(color);
  9. $this.animate({backgroundColor: color}, 2000);
  10. },4000);
  11. });
  12.  
  13.  
  14.  
  15. <div id="footerwrap" class="purple animated-bg stopsticky" style="background-color: rgb(236, 0, 140);">
  16. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement