Guest User

Untitled

a guest
Sep 23rd, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. $(window).resize(function(){
  2. setImagesTopMargin();
  3. });
  4.  
  5. $('.slider > div .photos img').each( function( ){
  6.  
  7. if($(window).width()>640)
  8. {
  9. var ratio = $(this).attr('data-width')/$(this).attr("data-height");
  10. var newHeight = $(window).width()/ratio;
  11. var marginTop = newHeight/(-2);
  12. $(this).css("margin-top", marginTop+"px");
  13. }
  14. } );
Add Comment
Please, Sign In to add comment