我正在使用以 CSS 为中心的书籍图像,并且我需要在书籍的两个面向“页面”上显示两个文本区域作为列。
我还想用 JavaScript 添加这些文本区域,以便可以通过页面底部的 Next 和 Back 按钮更改它们。
我有一个示例页面,您可以查看。
这是页面的 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 和 Back 并链接到本书的下一页和上一页。
如果有更简单的方法可以让我知道。
无论如何提前谢谢。