|
|
|
php สามารถ เขียน code จับเวลาได้มัยคะ.... ช่วยชี้แนะด้วยคะ |
|
|
|
|
|
|
|
ใช้ Javascript ครับ PHP ทำไม่ได้ หรือไม่ผมก็ไม่รู้เนี้ยล่ะ Code ประมาณนี้
=========================================================
<script language="javascript">
var Second = 1; <== เวลาที่จะเปลี่ยนรูปนะครับ ตอนนี้ 1 วินาที ถ้า 10 นาที ก็ใส่ 10*60 เข้าไป
var FlashSrc = new Array();
FlashSrc[0] = "Circle.swf"; <== Path ของ Flash นะครับ ถ้าอยู่คนละ Dir ก็ใส่ ../ ไปด้วย
FlashSrc[1] = "Circle2.swf"; <== Path ของ Flash นะครับ ถ้าอยู่คนละ Dir ก็ใส่ ../ ไปด้วย
function ShowFlashImage(index){
var obj = document.getElementById("Flash");
if (obj){
index = index%FlashSrc.length;
var FlashHtml = "<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0'>\n";
FlashHtml += "<param name='movie' value='"+FlashSrc[index]+"'>\n";
FlashHtml += "<param name='quality' value='high'>\n";
FlashHtml += "<embed src='"+FlashSrc[index]+"' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash'></embed>\n";
FlashHtml +="</object>\n";
obj.innerHTML = FlashHtml
index++;
}
setTimeout("ShowFlashImage("+index+")",Second*1000);
}
</script>
<body onLoad="ShowFlashImage(0);">
<div id="Flash"></div>
</body>
|
|
|
|
|
Date :
19 ส.ค. 2548 14:39:51 |
By :
jezusmitsui |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code ที่แทรก Flash นี้ ผม Copy มาจาก Dream Reaver มาอีกที่ นะครับ ถ้าไม่เหมือนกันก็ แก้เองละกัน
|
|
|
|
|
Date :
19 ส.ค. 2548 14:45:52 |
By :
jezusmitsui |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
Code (PHP)
[php]<!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=windows-874" />
<title>Untitled Document</title>
</head>
<body>
<body onLoad="begintimer()">
<script language="">
var limit="0:10"
if (document.images){
var parselimit=limit.split(":")
parselimit=parselimit[0]*60+parselimit[1]*1
}
function begintimer(){
if (!document.images)
return
if (parselimit==1)
// เหตุการณ์ที่ต้องการให้เกิดขึ้น
// window.location='page.php'; ถ้าต้องการให้กระโดดไปยัง Page อื่น
frmTest.submit();
else{
parselimit-=1
curmin=Math.floor(parselimit/60)
cursec=parselimit%60
if (curmin!=0)
curtime="เวลาที่เหลือ <font color=red> "+curmin+" </font>นาที กับ <font color=red>"+cursec+" </font>วินาที "
else
if(cursec==0)
{
alert('หมดเวลาแล้วจ้า');
}
else
{
curtime="เวลาที่เหลือ <font color=red>"+cursec+" </font>วินาที "
}
document.getElementById('dplay').innerHTML = curtime;
setTimeout("begintimer()",1000)
}
}
//-->
</script>
<div id=dplay ></div>
<form name="frmTest" action="JavaScript:window.close();">
</form>
</body>
</html>
[/php]
|
|
|
|
|
Date :
2009-07-24 10:31:02 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|