开发者社区> 问答> 正文

JQUERY 让DIV垂直居中

screenshot

jQuery(document).ready(function(){
   jQuery(".main").hover(function(){
       jQuery(this).find(".main-a").show();
       jQuery(".main-a").each(function(){
           var heightnum = jQuery(".main-a").outerHeight();
           var boxheight = jQuery(".child-a").outerHeight();
           var allheight = (heightnum - boxheight) /2;
           $(this).find(".child-a").css({ "position": "absolute", "top": allheight + "px", "display": "block" });
       });
       jQuery(this).find("img").stop().animate({"width":"320px","height":"220px","margin":"-10px","overflow":"hidden"},"slow");
   },function(){
       jQuery(this).find(".child-a").hide();
       jQuery(this).find("img").stop().animate({"width":"300px","height":"200px","margin":"0px","overflow":"hidden"},"slow");
   });
});

但是没有效果,这个应该如何改呢?

与图中对应

.main = 黑色框 (这个是三个框的DIV)

.main-a = 浅黑色框 (鼠标移动上去后显示里面图片分别向四周放大10px)

.child-a = 灰色框(主要想让这个DIV垂直居中,高度没有设置)

展开
收起
小旋风柴进 2016-05-27 08:28:04 2171 0
1 条回答
写回答
取消 提交回答
  • <div style="height:100px;background:red">
      <span style="vertical-align:middle;line-height:100px">&zwnj;</span><!--这个很重要-->
       <div style="background:yellow;height:10px;width:10px;vertical-align:middle;display:inline-block"></div>
    </div>
    2019-07-17 19:16:54
    赞同 展开评论 打赏
问答分类:
问答标签:
问答地址:
问答排行榜
最热
最新

相关电子书

更多
低代码开发师(初级)实战教程 立即下载
冬季实战营第三期:MySQL数据库进阶实战 立即下载
阿里巴巴DevOps 最佳实践手册 立即下载