|
|
|
นาฬิกาครับ ใครช่วยแก้ให้เข็มวินาทีให้หน่อย นาฬิกาครับ ใครช่วยแก้ให้เข็มวินาทีให้หน่อย แบบให้มันเดินเรื่อยๆครับไม่ต้องรีเฟรช |
|
|
|
|
|
|
|
นาฬิกาครับ ใครช่วยแก้ให้เข็มวินาทีให้หน่อย
แบบให้มันเดินเรื่อยๆครับไม่ต้องรีเฟรช
<?php
header("Content-type: image/png");
$imSize = 80;
$clockSize = $imSize - 8;
$today = getdate();
$hour = $today[hours];
$minutes = $today[minutes];
$seconds = $today[seconds];
if ($hour >= 12)
{
$hour -= 12;
}
$hourDegress = $hour * 30;
$hourDegress += $minutes / 2;
$minDegress = $minutes * 6;
$secondsDegress= $seconds * 6;
//* start at 3:00 or degree 90
$hourDegress -= 90;
if ($hourDegress < 0) { $hourDegress += 360; }
$minDegress -= 90;
if ($minDegress < 0) { $minDegress += 360; }
$secondsDegress -= 90;
if ($secondsDegress < 0) { $secondsDegress += 360; }
//* change radians and draw circle
$hourRadians = $hourDegress / 57.295779513082;
$minRadians = $minDegress / 57.295779513082;
$secondsRadians=$secondsDegress / 57.295779513082;
$myImage = ImageCreate($imSize, $imSize);
$red = ImageColorAllocate($myImage, 255, 0, 0);
$white = ImageColorAllocate($myImage, 255, 255, 255);
$blue = ImageColorAllocate($myImage, 0, 0, 255);
$yellow = ImageColorAllocate($myImage, 255, 255, 0);
ImageFill($myImage, 0, 0, $blue);
Imageinterlace($myImage, 1);
Imagearc($myImage, $imSize/2, $imSize/2, $clockSize, $clockSize, 0, 359, $yellow);
//* draw the hour line and minute line
$hourHandLen = ($clockSize / 2) * 0.6;
$x2 = $imSize/2 + ($hourHandLen * cos($hourRadians));
$y2 = $imSize/2 + ($hourHandLen * sin($hourRadians));
ImageLine($myImage, $imSize/2, $imSize/2, $x2, $y2, $white);
$minHandLen = ($clockSize / 2) * 0.9;
$x2 = $imSize/2 + ($minHandLen * cos($minRadians));
$y2 = $imSize/2 + ($minHandLen * sin($minRadians));
ImageLine($myImage, $imSize/2, $imSize/2, $x2, $y2, $white);
$secondsHandLen = ($clockSize / 2) * 0.9;
$x2 = $imSize/2 + ($secondsHandLen * cos($secondsRadians));
$y2 = $imSize/2 + ($secondsHandLen * sin($secondsRadians));
ImageLine($myImage, $imSize/2, $imSize/2, $x2, $y2, $white);
//* draw time character
if ($minutes < 10) { $minutes="0$minutes";}
Imagestring($myImage, 3, 5, $imSize - 15, ($hour . ":" . $minutes.":".$seconds), $white);
Imagepng($myImage);
Imagedestroy($myImage);
?>
ขอบคุณครับ
Tag : - - - -
|
|
|
|
|
|
Date :
26 พ.ค. 2548 11:46:59 |
By :
arsachi |
View :
2990 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ต้องผ่านการ Refresh ครับ เพราะเป็นรูปภาพ ซึ่งการทำงานจะทำฝั่ง Web Server ถ้าเป็น JavaScript สามารถทำได้ครับ
|
|
|
|
|
Date :
27 พ.ค. 2548 09:34:06 |
By :
@W_IN |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|