Home > Web Front-end > JS Tutorial > body text

Pictures based on jquery are centered up, down, left, and right in unknown containers at various resolutions_jquery

WBOY
Release: 2016-05-16 16:48:43
Original
1090 people have browsed it

DIV:

Copy code The code is as follows:





${pic.desc}







CSS:

Copy code The code is as follows:

.pic_conent{
height: 720px;/* This height will be changed by js*/
text-align: center;
display: table-cell;
vertical-align: middle;
}
.pic_layer{text-align: center; width:100%; display:inline-block; vertical-align:middle;}

jquery:

Copy code The code is as follows:

$(function() {
var surH = $(window).height();
$(".pic_conent").height(surH);
window.onresize=function(){
var surH = $(window).height() ;
$(".pic_conent").height(surH);
}
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template