이 글에서는 ligerUI 레이아웃 중 센터에서 탭 높이 크기를 해결하는 방법에 대한 관련 정보를 주로 소개합니다. 필요한 친구는
1.0 인용 js, css#를 참조하세요. 🎜🎜#
<link href="/Content/scripts/ligerUI/skins/Aqua/css/ligerui-all.css" rel="stylesheet" /> <link href="/Content/scripts/ligerUI/skins/ligerui-icons.css" rel="stylesheet" /> <script src="~/Scripts/jquery-1.8.2.js"></script> <script src="/Content/scripts/ligerUI/js/ligerui.all.js"></script>
2.0 js 코드로 ligerUI 레이아웃 및 탭 높이 설정
<script> var tab; $(function () { $("#layout1").ligerLayout({ leftWidth: 200, topHeight: 80 }); $("#accordion1").ligerAccordion({ height: 300 }); //重要的代码,设置新增加的tab的高度等于center p的高度. var height = $(".l-layout-center").height(); tab = $("#tab1").ligerTab({ height: height }); }); //可以动态增加一个tab标签页,但是元素有哪些 function addTab(url, text, tabid) { tab.addTabItem({ url: url, text: text, tabid: tabid }); } </script>
3.0 간단한 설정 스타일#🎜 🎜 # <style type="text/css">
body { padding: 10px; margin: 0; }
#layout1 { width: 100%; margin: 40px; height: 400px; margin: 0; padding: 0; }
#accordion1 { height: 270px; }
h4 { margin: 20px; }
#accordion1 ul li { font-size: 14px; margin-left: 15px; }
a { color: black; text-decoration: none; }
a:hover { color: #ff6a00; }
</style>
<body style="padding:10px"> <p id="layout1"> <p position="left" title="功能列表"> <p id="accordion1"> <p title="项目管理"> <ul> <li><a href="javascript:void(0)" onclick="addTab( 'http://www.youku.com','指定队伍', 1 )">指定队伍</a></li> <li><a href="javascript:void(0)" onclick="addTab( 'http://www.jd.com','查看项目', 2 )">查看项目</a></li> </ul> </p> <p title="用户管理"> <ul> <li><a href="javascript:void(0)" onclick="addTab('http://www.baidu.com','用户审核', 3 )">用户审核</a> </li> <li><a href="javascript:void(0)" onclick="addTab( 'http://www.sina.com','查看用户', 4 )">查看用户</a></li> </ul> </p> <p title="其他" style="padding:10px"> 其他内容 </p> </p> </p> <p position="center" id="tab1"> </p> <p position="top" style="line-height: 80px;"> <span style="font-size: 28px;font-weight: bolder;font-family:楷体;">超级管理员后台</span> <span><a href='@Url.Action("LoginOut","Admin")' style="margin-right: 20px;font-size: 18px;color: #0000cd;float: right;">退出</a></span> </p> <p position="bottom"></p> </p> </body>
#🎜 🎜##🎜 🎜# 더 이상 말도 안되는 소리는 하지 마세요. 모두를 위해 코드를 게시하겠습니다. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>布局实力篇之自动适应窗口 高度</title>
<link href="../lib/ligerUI/skins/Aqua/css/ligerui-all.css" rel="stylesheet" type="text/css" />
<!--<link href="../lib/ligerUI/skins/Gray/css/all.css" rel="stylesheet" type="text/css" />--> 我用的另一套皮肤
<!--我添加了自定义的样式-->
<link href="../style/site.css" rel="stylesheet" type="text/css" />
<script src="../lib/jquery/jquery-1.3.2.min.js" type="text/javascript"></script>
<script src="../lib/ligerUI/js/core/base.js" type="text/javascript"></script>
<script src="../lib/ligerUI/js/plugins/ligerLayout.js" type="text/javascript"></script>
<script type="text/javascript">
$(function () {
$("#container").ligerLayout({ leftWidth: 200 }); //这一句可是关键啊
});
</script>
</head>
<body>
<p id="top">
其实俺和他们不是一起的,俺是独立的一部分
</p>
<p id="container">
<p position="left"> 这里也要注意啊
</p>
<p position="center" title="标题"> 加个标题更好玩
</p>
</p>
</body>
</html>
* { margin: 0px; padding: 0px; } body { padding: 5px; margin: 0; padding-bottom: 15px; } #top { height: 80px; margin-bottom: 3px; background-color:Lime }
Summary:
컨테이너를 라이거 레이아웃으로 변환하기만 하면 됩니다. 객체
위치 속성을 잊지 마세요
그런데 렌더링이 있습니다
#🎜 🎜# 위 내용은 이 글의 전체 내용입니다. 모든 분들의 학습에 도움이 되었으면 좋겠습니다. 더 많은 관련 내용은 PHP 중국어 홈페이지를 주목해주세요!
관련 권장 사항:
Angularjs의 $apply 및 최적화 사용 정보
#🎜 🎜 #jquery ajaxfileuplod 파일 업로드 효과에 대해 essyui laoding
위 내용은 LigerUI 레이아웃 중에 센터의 탭 높이 크기를 해결하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!