Image resize to fit screen

前端 未结 6 1940
情歌与酒
情歌与酒 2020-12-10 19:08

I created this code to resize photos/images to fit the screen, considering the space available for the nav bar.

The script fires on image load and on navigation clic

6条回答
  •  抹茶落季
    2020-12-10 19:50

    Here is how I do it:

     jQuery(document).ready(function($) {
          $('.wp-post-image').height($(window).height());
     });
    

提交回复
热议问题