遇上这样的排版,手机的解象度都不同,假如只用CSS3根本就做不出这样的排版:因此要用Jquery。
1. HTML
2. CSS
.postImgCenterCrop { display: inline-block; width: 200px; height: 200px; background-position: center center; background-size: cover;}
3. Jquery
var width = (window.innerWidth > 0) ? window.innerWidth : screen.width;$(".postImgCenterCrop").width(width/2.1);$(".postImgCenterCrop").height(width/2.1);
posted on 2017-12-29 12:07 阅读( ...) 评论( ...)