Jquery Ui position
Position 的简单使用
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>jQuery UI ExamplePage</title>
<scriptsrc="js/jquery-1.10.2.js"></script>
<scriptsrc="js/jquery-ui-1.10.4.custom.js"></script>
<link rel="stylesheet"href="css/ui-lightness/jquery-ui-1.10.4.custom.min.css">
<style type="text/css">
#cont1{
border:1px solid gray;
width:100px;
height:100px;
background:green;
z-index:10;
}
#cont2{
border:1px solid gray;
width:150px;
height:150px;
background:gray;
}
</style>
<script>
$(function(){
//of 表示在容器2中,my"center top" 意思是用我的上边框的中心 (at:"centertop") 对齐在of容器中的center top
//如果你这个写在下面那么就不会居中了,因为被覆盖掉了
//如果是重叠覆盖可以去修改z-index
$("#cont2").position({of:$(window)});
$("#cont1").position({
of:$("#cont2"),
my:"center top",
at:"center top"
});
});
</script>
</head>
<body>
<h1>position的使用</h1>
<div id="cont1">容器一</div>
<div id="cont2">容器二</div>
</body>
</html>
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。