基于jquery实现的图片在各种分辨率下未知的容器内上下左右居中_jquery
时间:2021-07-01 10:21:17
帮助过:6人阅读
DIV:
代码如下:
${pic.desc}
${pic.poi}
by ${pic.username}
CSS:
代码如下:
.pic_conent{
height: 720px;/*这个高度会被js改掉*/
text-align: center;
display: table-cell;
vertical-align: middle;
}
.pic_layer{text-align:center; width:100%; display:inline-block; vertical-align:middle;}
jquery:
代码如下:
$(function() {
var surH = $(window).height();
$(".pic_conent").height(surH);
window.onresize=function(){
var surH = $(window).height();
$(".pic_conent").height(surH);
}