Advertisement
XZTablets

Untitled

May 12th, 2019
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. let rainbow_colours = ['#ff5454', '#ffa654', '#ffff5e', '#ceff9b', '#9dff96', '#a0f7d1', '#9bfbff', '#9bcdff', '#939eff', '#c493ff', '#faa8ff', '#ffa8d0'];
  2. let rainbow_current_colour = 0;
  3. setInterval(function(){
  4. if(rainbow_current_colour >= (rainbow_colours.length - 1)){
  5. rainbow_current_colour = 0;
  6. }else{
  7. rainbow_current_colour++;
  8. }
  9. }, 1.5);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement