Guest User

Untitled

a guest
Feb 25th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. function updateImage() {
  2. if (pic == 1) {
  3. caption = "GO BEYOND EARTH";
  4. }
  5. else if (pic == 2) {
  6. caption = "EXPLORE NEW WORLDS";
  7. }
  8. else if (pic == 3) {
  9. caption = "EXPERIENCE DEEP SPACE";
  10. }
  11.  
  12. $('.pic-titles').text(caption);
  13. $('.center').css('background-image', 'url(img/space' + pic + '.jpg');
  14. pic++;
  15.  
  16. if (pic > 3) {
  17. pic = 1;
  18. }
  19. }
  20. });
Add Comment
Please, Sign In to add comment