baigao
2015-09-25 23:04:16
证
jquery实现将html div在窗口中水平垂直居中效果,无论是否调整窗口大小
jquery实现将html div在窗口中水平垂直居中效果,无论是否调整窗口大小
如图所示:
代码如下:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>代码实现了字div在父div中的水平垂直居中效果</title> <style type="text/css"> .parent { width:500px; height:500px; background-color:red; } .children { width:200px; height:100px; background-color:green; } </style> <script type="text/javascript" src="http://static.zuidaima.com/resource/js/jquery.min.js"></script> <script type="text/javascript"> $(document).ready(function(){ $(window).resize(function(){ $(".children").css({ position:'absolute', left:($(".parent").width() - $(".children").outerWidth())/2, top:($(".parent").height() - $(".children").outerHeight())/2 + $(document).scrollTop() }); }); $(window).resize(); }) </script> </head> <body> <div class="parent"> <div class="children"></div> </div> </body> </html>
猜你喜欢
请下载代码后再发表评论

- 证 jquery生成图片验证码
- 原证 jquery编写的alert弹窗插件带模式化窗口,支持$.alert({参数})语法,支持拖拽
- 证 jquery实现鼠标移动到图片上缩小图片并显示图片说明特效源代码下载
- 证 分享一个jquery的分页插件代码
- Jquery超酷的日,周,月日程安排插件源码分享
- 证 jquery分页插件
- jQuery Mobile权威指南(陶国荣)书籍源代码
- 证 jquery炫酷地图特效样式
- 75款常用的jquery特效前端网页代码
- 证 中秋特供:中秋快乐!html5+canvas+jquery实现烟花效果
- js框架jquery+layer弹窗实现登录、抽奖手机端程序代码,兼容多种手机
- 证 Jquery实现QWERTY软键盘插件


511076827 LV33
2024年3月31日
9323249323 LV13
2023年7月25日
微信网友_6411724627349504 LV3
2023年4月3日
nininininini LV2
2022年5月7日
muimuimui LV9
2021年2月13日
熊憨憨2号 LV1
2020年11月18日
NANA123 LV5
2020年6月22日
yale1422688399 LV3
2020年5月29日
东风风神发顺丰 LV2
2020年2月22日
sirgsyz LV3
2019年12月20日