Du kunne jo f.eks. lave nogle div-tags, hvor du så bestemmer deres placering via CSS. Har bikset et lille eksempel sammen:
- <!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>
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
- <title>Floating Boxes</title>
- <script language="javascript">
- function showPopUp(div){
- if(div.id == "content1"){
- window.open('pagename1.php','pagename1','width=320,height=190');
- } else if(div.id == "content2"){
- window.open('pagename2.php','pagename2','width=320,height=190');
- }
- }
- </script>
- <style type="text/css">
- body{
- width:1000px;
- height:760px;
- }
- #content1{
- background-color:#0099CC;
- width:100px;
- height:150px;
- position:absolute;
- top:40px;
- left:20px;
- }
- #content2{
- background-color:#FFCC00;
- width:100px;
- height:150px;
- position:absolute;
- top:100px;
- left:200px;
- }
- </style>
- </head>
-
- <body>
- <div id="content1" onclick="showPopUp(this)">
- Indhold 1
- </div>
- <div id="content2" onclick="showPopUp(this)">
- Indhold 2
- </div>
- </body>
- </html>
Det er måske endda bedre at lave en wrapper-div, der bestemmer sidens højde og bredde, men nu lavede jeg bare bodyen om for nemhedens skyld.
Indlæg senest redigeret d. 27.11.2008 20:39 af Bruger #10572