22 lines
654 B
HTML
22 lines
654 B
HTML
<vbox id="mainLayout">
|
|
<!-- 用于做半透明 -->
|
|
<vbox style="background-color: rgba(0,0,0,100) ">
|
|
<!-- 标题 -->
|
|
<iframe id="titleFrame" height="50" src="res/xml/title.htm"></iframe>
|
|
<!-- 中间部分 -->
|
|
<iframe id="centerFrame" src="res/xml/center.htm"></iframe>
|
|
<!-- 下边部分 -->
|
|
<iframe id="bottomFrame" height="67" src="res/xml/bottom.htm"></iframe>
|
|
</vbox>
|
|
</vbox>
|
|
|
|
<style>
|
|
#mainLayout {
|
|
background-color: #029BE9;
|
|
background-image: "res/imgs/defaultBackground.png";
|
|
}
|
|
|
|
#aaa {
|
|
border: 1px solid rgb(255, 216, 0); /*暂不支持*/
|
|
}
|
|
</style> |