DIV:
${pic.desc}
CSS:
.pic_conent{
高さ: 720px ;/* この高さは js によって変更されます*/
text-align: center;
display: table-cell;
vertical-align: middle;
}
.pic_layer{text -整列: 中央; 幅: 100%; 垂直整列: 中央; }
jQuery:
$(function() {
var surH = $(window).height();
$(".pic_conent").height(surH);
window.onresize=function(){
var surH = $(window). height() ;
$(".pic_conent").height(surH);
}