我正在處理以CSS爲中心的書籍圖像,並且我需要在本書的兩個面向「頁面」上顯示兩列文本區域。圖片和CSS文字始終居中圖片
我還想讓這些文本區域添加JavaScript,以便它們可以通過頁面底部的Next和Back按鈕進行更改。
我有一個example page,你可以看看。
這裏是頁面的HTML:
<html>
<head>
<title>BookPopUp</title>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<meta http-equiv="Page-Exit" content="blendTrans(Duration=2.0)">
<link rel="stylesheet" type="text/css" href="css/popup.css" />
</head>
<body background="images/bg.jpg">
<div id="bookpop">
<span></span>
</div>
</body>
</html>
這裏是頁面的CSS:
/*website BookPopUp Image Center*/
#bookpop {
position: absolute;
text-align: center;
left: 50%;
top: 50%;
margin: -368.5px auto 0 -512px; /* value of top margin: height of the image divide by 2 (ie: 240/2), value of left margin: width of the image divide by 2 (ie: 260/2) */;
width: 1024px; /* same as the image width */
}
#bookpop span {
display: block;
width: 1024px;
height: 737px;
margin: 0 auto;
position: relative;
background: transparent url(../images/bookpopup.png) 0 0 no-repeat;
text-indent: -5000em;
outline: 0;
}
我也想提出兩個按鈕或者接近或頂部圖片。他們會說Next and Back並鏈接到本書的下一頁和上一頁。
如果有更簡單的方法可以讓我知道。
無論如何感謝提前。
K,它允許我在圖像上書寫文字,但是如何像在bookpop .css命令中一樣將它保持居中? – Anthony