|
|
|
ต้องการให้ POPUP ขึ้นมาชิดที่ด้านบนทางขวาสุดทำไงครับ |
|
|
|
|
|
|
|
อันนี้สคริปที่ใช้ดึงคับ
Code
<script>
function popupopen(){
window.open("popup.php", "show", "toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,titlebar=no,width=640,height=840")
}
</script>
ต้องเขียนแก้ไขยังไงคับที่จะให้เวลา กดเพื่อเรียก POPUP ขึ้นมาแสดงอยู่ด้านบนสุดชิดขวาสุดครับ
Tag : - - - -
|
|
|
|
|
|
Date :
2009-10-26 07:01:17 |
By :
ปัญหาขาจรขาประจำ |
View :
2418 |
Reply :
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<title>popup div</title>
<style type="text/css">
* {
margin:0;
padding:0;
}
body {
background-color:#eee;
color:#000;
}
#open {
width:80px;
line-height:24px;
border:3px double #000;
background-color:#fff;
color:#000;
text-align:center;
margin:20px;
cursor:pointer;
}
#popup {
position:absolute;
left:200px; /* edit this value to horizontally position popup*/
top:100px; /* edit this value to vertically position popup*/
width:109px;
height:73px;
border:1px solid #000;
}
#popup div {
height:16px;
line-height:16px;
padding-right:10px;
border-bottom:1px solid #000;
background-color:#fde477;
font-size:12px;
font-weight:bold;
color:#000;
text-align:right;
}
#popup span {
cursor:pointer;
}
#popup #content {
height:56px;
background-image:url(http://www.searchengineworld.com/gfx/logo.png);
}
.gone {
display:none;
}
.here {
display:block;
}
</style>
<script type="text/javascript">
function displayStuff() {
obj=document.getElementById('popup');
document.getElementById('open').onclick=function() {
obj.className='here';
}
document.getElementById('close').onclick=function() {
obj.className='gone';
return false;
}
}
if(window.addEventListener){
window.addEventListener('load',displayStuff,false);
}
else {
if(window.attachEvent){
window.attachEvent('onload',displayStuff);
}
}
</script>
</head>
<body>
<div id="open">popup</div>
<div id="popup" class="gone">
<div><span id="close">X</span></div>
<p id="content"></p>
</div>
</body>
</html>
|
|
|
|
|
Date :
2009-10-26 08:43:44 |
By :
เอาไปเลย |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณคับ จะลองทำดูคับ
|
|
|
|
|
Date :
2009-10-26 09:40:51 |
By :
ปัญหาขาจรขาประจำ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองโค๊ตข้างบนแล้ว ไม่เห็นชิดขวาบนสุดเลยครับ อยากจะให้ผูที่รู้แก้ไขสคริปนี้ให้ทีอะคับ
Code
<script>
function popupopen(){
window.open("popup.php", "show", "toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,titlebar=no,width=640,height=840")
}
</script>
เพราะต้องใช้จริง
|
|
|
|
|
Date :
2009-10-26 10:18:54 |
By :
ปัญหาขาจรขาประจำ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<html>
<head>
<script>
function reallyCenterWindow() {
leftPos = 0
topPos = 0
if (screen) {
leftPos = (screen.width / 2) - 251
topPos = (screen.height / 2) - 162
}
ElementWindow = window.open('BBE leaflet2.jpg','ElementWin',
'width=502,height=325,left='+leftPos+',top='+topPos)
}
</script>
</head>
<body>
<a href="javascript:reallyCenterWindow()">Click to really center the Figure 1 window!</a>
</body>
</html>
|
|
|
|
|
Date :
2009-10-26 11:58:54 |
By :
Sek-Artdrinker |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|