我想创建一个位于页面中间位置的内容面板。在滚动条出现之前,它可以将宽度和高度扩展到页面的某个百分比。
我在JSF页面上使用Primefaces。我相信有很多解决方案可以做到这一点。我想使用JSF的组合。
这是我的解决方案:
<p:layout id="layout">
<p:layoutUnit position="center">
<p:panel header="Test" style="width:50%">
<ui:insert name="content"/>
</p:panel>
</p:layoutUnit>
</p:layout>
然而,这并没有真正做任何事情。它没有居中,我插入“内容”标签的内容扩展到整个页面。
任何人都可以协助我如何实现目标吗?
修改
我尝试过Rick Calder发布的解决方案。以下是我的代码。然而它对我不起作用。我把css写入了style.css。我把javascript写入resizeContentPanel.js。我在resource.xhtml的头部加载了JQUery和resizeContentPanel.js。我相信这些都是正确的步骤。有什么我可以失踪的吗?
至于我实际上错了什么,我没有看到内容面板。当我调试javascript时,它的高度边距为-71,宽度边距为-160。我假设这就是为什么我看不到它。
<?xml version='1.0' encoding='UTF-8' ?>
<!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"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:p="http://primefaces.org/ui"
xmlns:f="http://java.sun.com/jsf/core">
<h:head>
<title>
<ui:insert name="windowTitle"/>
</title>
<h:outputStylesheet library="css" name="style.css"/>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<h:outputScript library="scripts" name="resizeContentPanel.js" />
</h:head>
<h:body>
<div class="centeredPanel">
<p:layout id="layout" >
<p:layoutUnit position="center">
<ui:insert name="content"/>
</p:layoutUnit>
</p:layout>
</div>
<h:form>
<div id="stack">
<p:stack id="stackMenu" icon="/resources/images/stack/stack.png" model="#{pageBuilder.stackMenuModel}" />
</div>
</h:form>
<div id="dock">
<p:dock id="dockMenu" model="#{pageBuilder.dockMenuModel}"/>
</div>
</h:body>
的style.css
root
{
display: block;
}
body
{
background-image: url('../../resources/images/background/background.jpg');
}
.centeredPanel{
width:25%;
height:25%;
min-width:100px;
min-height:100px;
position:absolute;
left:50%;
top:50%;
}
resizeContentPanel.js
$(document).ready(function(){
var heightMargin = -($('.centeredPanel').height()/2);
var widthMargin= -($('.centeredPanel').width()/2);
$('.centeredPanel').css('margin-left',widthMargin);
$('.centeredPanel').css('margin-top',heightMargin);
});
$(window).resize(function(){
var heightMargin = -($('.centeredPanel').height()/2);
var widthMargin= -($('.centeredPanel').width()/2);
$('.centeredPanel').css('margin-left',widthMargin);
$('.centeredPanel').css('margin-top',heightMargin);
});
答案 0 :(得分:3)
要在页面中完美居中,您确实希望它是固定大小,以便您可以进行计算。
.centeredPanel{
width:500px;
height:500px;
position:absolute;
left:50%; //sets left edge at the midway point of it's container
top:50%; //sets top edge at the midway point of it's container
margin-left:-250px; //moves the div back half it's width to centre it.
margin-top:-250px; //moves the div up half it's height to centre it.
}
演示:http://jsfiddle.net/calder12/qNNvb/
使用百分比来执行此操作需要jQuery。
.centeredPanel{
width:25%;
height:25%;
min-width:100px;
min-height:100px;
position:absolute;
left:50%;
top:50%;
background-color:red;
}
$(document).ready(function(){
var heightMargin = -($('.centeredPanel').height()/2);
var widthMargin= -($('.centeredPanel').width()/2);
$('.centeredPanel').css('margin-left',widthMargin);
$('.centeredPanel').css('margin-top',heightMargin);
});
$(window).resize(function(){
var heightMargin = -($('.centeredPanel').height()/2);
var widthMargin= -($('.centeredPanel').width()/2);
$('.centeredPanel').css('margin-left',widthMargin);
$('.centeredPanel').css('margin-top',heightMargin);
});
答案 1 :(得分:0)
您可能希望使用JQuery来居中页面。这个解决方案有用吗?