Advertisement
Guest User

Untitled

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