Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script>
  2. $(document).ready(function() {
  3.     $('.section').each(function() {
  4.         var imgurl = $(this).find('img').attr('src');
  5.         $(this).html('').css({
  6.             'width' : '100%',
  7.             'heihgt' : '600px',
  8.             'background-image' : 'url(' + imgurl + ')',
  9.             'background-position' : '50% 50%',
  10.             'background-size' : 'cover',
  11.             'background-repeat' : 'no-repeat'
  12.         });
  13.     });
  14. });
  15. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement