Guest User

Untitled

a guest
Mar 23rd, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. .mainview {
  2. background-image: url(images/bg-1.png);
  3. height: 600px;
  4. background-repeat: no-repeat;
  5. background-size: cover;
  6. background-position: bottom center;
  7. background-attachment: fixed;
  8. position: relative;
  9. top: 12px
  10. }
  11.  
  12. <script type="text/javascript">
  13.  
  14. var images = ['image-1.jpg', 'image-2.jpg', 'image-3.jpg', 'image-4.jpg'];
  15. document.getElementsByClassName('mainview')[0].style.backgroundImage = 'url(' + images[Math.floor(Math.random() * images.length)] + ')';
  16.  
  17. </script>
Add Comment
Please, Sign In to add comment