アナログ時計に「再読込」ボタンを追加

20161003a

アナログ時計の下部に「サーバーの時刻を再読込」ボタンを追加しました。
(下記ソース245行目)

時刻が遅れ気味になるようなので、1000ミリ秒ごとの積み上げを、995ミリ秒ごとの積み上げに変更。(237行目)

それでも心もとないので、当初、60秒ごとに(00秒時に)、自動的にサーバーの時刻を再読み込みするようにしたのですが、サーバーからの応答が無く、何も表示されなくなるケースが多くなりました。
現在は、1時間ごとに(00分00秒時に)自動でサーバーの時刻を再読み込みします。(38〜45行目辺り)

これでも、サーバーに負荷がかかりそうな気もしますが・・・。まあ、しばらく様子を見て、ダメそうなら、さらにインターバルを長くする方向で・・・。

デザインはシンプルなものに変更しました。

Canvasに図形を描く際には以下のサイトが参考になりました。
canvas に図形を描く – ウェブデベロッパーガイド | MDN

「トップページ」と「診療時間と休診日」とで、微妙に大きさを変えて(=別々のPHPファイルを呼んで)いたのですが、管理が面倒なので、単一のPHPファイルを呼ぶように変更しました。


インラインフレームに表示してみました。


ソースはこちら

<!DOCTYPE html>
<html lang="ja">
	<head>
		<meta charset="UTF-8">
		<?php
			date_default_timezone_set('Asia/Tokyo');
			$y = date("Y");
			$g = date("m");
			$d = date("d");
			$w = date("w");
			$h = date("G");
			$m = date("i");
			$s = date("s");
		?>

		<script type="text/javascript">
		var flag = 0;
		var timer = 1;

		function Init(){
			year = <?php echo $y ?>;
			gatu = <?php echo $g ?>;
			day  = <?php echo $d ?>;
			hour = <?php echo $h ?>;
			minute = <?php echo $m ?>;
			second = <?php echo $s ?>;
			yo = <?php echo $w ?>;
			clock();
		}

		function clock(){

			// 時刻の積算処理
			if (second==60) { second=0;minute++;}
			if (minute==60) { minute=0;hour++;}
			if (hour==24) { hour=0;}

			// リロード(日付切り替えの為、最低00:00:00の1回はリロードが必要)
			if (minute==59 && second==58) {flag=1;}	//60分毎にリロードする
			if (minute==0 && second==0) {
				if (flag==1){						//重複読み込み防止
					window.location.reload();	//時刻校正および日付更新の為にリロードする
					flag=0;
				}	
			}

			// ゼロ埋め処理
			if (gatu<10) {_g="0"+gatu;}else{_g=""+gatu;}
			if (day<10) {_d="0"+day;}else{_d=""+day;}
			if (hour<10) {_h="0"+hour;}else{_h=""+hour;}
			if (minute<10) {_m="0"+minute;}else{_m=""+minute;}
			if (second<10) {_s="0"+second;}else{_s=""+second;}

			// 文字ベースのデジタル時計を表示
			var yobi = new Array("日","月","火","水","木","金","土");
			var now_Date = year + "/" + _g + "/" + _d;
			var now_Time = _h + ":" + _m + ":" + _s;
			var now_Yobi = "(" + yobi[yo] + ") ";
			var now_Text = now_Time + "<br>" + now_Date + now_Yobi;
			document.getElementById('now_server_text').innerHTML = now_Text;

			// アナログ時計の描画
		  
			var canvas = document.getElementById("clockid");
			var ctx = canvas.getContext('2d');
			ctx.save();
 
			// 各種設定
			canvas.width = 280;
			canvas.height = 280;
			var w      = canvas.width;
			var h      = canvas.height;
			var center = {x : w / 2, y : h / 2 };
			// 文字盤の数字の中心までの半径(canvas の半分より少し小さく)
			var rads     = w / 2 * 0.73; 

			ctx.save();
			ctx.clearRect(0, 0, w, h);
 
			// 時計の外側の丸
			ctx.translate(center.x,center.y);
			ctx.fillStyle   ="#f5deb3";
			ctx.shadowBlur = 1;
			ctx.shadowColor ="#000";
			ctx.beginPath();
			ctx.arc(0, 0, 135, 0, Math.PI * 2, false);
			ctx.stroke();
			ctx.fill();

			// 時計の内側の丸
			ctx.shadowBlur = 3;
			ctx.shadowColor = "#000";
			ctx.beginPath();
			ctx.arc(0, 0, 130, 0, Math.PI * 2, false);
			ctx.fillStyle   ="#ffebcd";
			ctx.fill();
 			ctx.restore();
 
 
			// 文字盤(1〜12の文字)
			ctx.save();
			ctx.font        = "26px 'sans-serif'";
			ctx.textAlign   ="center";
			ctx.textBaseline    ="middle";
			ctx.fillStyle   = "rgb(222,184,135)"; //文字色
			ctx.shadowBlur = 1;
			ctx.shadowColor = "#000";
			for (var i = 0; i < 12; i++) {
				var radian = i * Math.PI / 6;
				var x = center.x + rads * Math.sin(radian);
				var y = center.y - rads * Math.cos(radian);
				var text = "" + (i == 0 ? "12" : i);
				ctx.fillText(text, x, y);
			}
			ctx.restore();
			
			// 文字盤の背景文字
			ctx.font = "32px 'sans-serif'";
			ctx.strokeStyle = "#ffebcd";
			ctx.fillStyle = "#f5deb3";
			ctx.fillText("Server",93,122);	// 文字盤の背景文字(上)
			ctx.fillText("Clock" ,99,186);	// 文字盤の背景文字(下)
			ctx.restore();


			//  中心を移動
			ctx.translate(center.x,center.y);
			ctx.save();


			// 分の目盛
			ctx.strokeStyle ="#deb887";
			ctx.lineWidth = 2;
			ctx.beginPath();
			for (var i=0;i<60;i++){
				if (i%5!=0) {
					ctx.moveTo(130,0);
					ctx.lineTo(125,0);
					ctx.moveTo(80,0);
					ctx.lineTo(75,0);
				}
				ctx.rotate(Math.PI/30);
			}
			ctx.stroke();
 
			// 時間の目盛
			ctx.strokeStyle ="#deb887";
			ctx.lineWidth = 3;
			ctx.beginPath();
			for (var i=0;i<60;i++){
				ctx.moveTo(130,0);
				ctx.lineTo(120,0);
				ctx.moveTo(80,0);
				ctx.lineTo(70,0);
				ctx.rotate(Math.PI/6);
			}
			ctx.stroke();
			ctx.restore();

			// 針の設定
			var sec = second;
			var min = minute;
			var hr= hour;
			hr = hr>=12 ? hr-12 : hr; // 12以上なら「hr-12」、それ以外なら「hr」
			ctx.fillStyle = "#000";
 
			// 短針
			ctx.save();
			ctx.rotate( hr*(Math.PI/6) + (Math.PI/360)*min + (Math.PI/21600)*sec )
			ctx.strokeStyle = "rgb(222,184,135)";
			ctx.fillStyle   = "rgb(222,184,135)";
			ctx.lineWidth = 4;
			ctx.shadowBlur = 3;
			ctx.shadowColor = "#000";
			ctx.beginPath();
			ctx.moveTo(-5,12);
			ctx.lineTo(-4,-68);
			ctx.lineTo(4,-68);
			ctx.lineTo(5,12);
			ctx.closePath();
			// ctx.stroke();
			ctx.fill();
			ctx.restore();
 
			// 長針
			ctx.save();
			ctx.rotate( (Math.PI/30)*min + (Math.PI/1800)*sec )
			ctx.strokeStyle = "rgb(222,184,135)";
			ctx.fillStyle   = "rgb(222,184,135)";
			ctx.lineWidth = 3;
			ctx.shadowBlur = 3;
			ctx.shadowColor = "#000";
			ctx.beginPath();
			ctx.moveTo(-5,16);
			ctx.lineTo(-4,-116);
			ctx.lineTo(4,-116);
			ctx.lineTo(5,16);
			ctx.closePath();
			// ctx.stroke();
			ctx.fill();
			ctx.restore();

			// 秒針
			ctx.save();
			ctx.rotate(sec * Math.PI/30);
			ctx.strokeStyle = "rgb(222,184,135)";
			ctx.fillStyle   = "rgb(222,184,135)";
			ctx.lineWidth = 2;
			ctx.shadowBlur = 3;
			ctx.shadowColor = "#000";
			ctx.beginPath();
			ctx.arc(0,36,8,0,Math.PI*2,true);
			ctx.moveTo(0,28);
			ctx.lineTo(0,-92);
			ctx.closePath();
			ctx.stroke();
			// ctx.fill();
			ctx.restore();
 
			// 時計の中心の丸
			ctx.save();
			ctx.beginPath();
			ctx.lineWidth = 5;
			ctx.shadowBlur = 3;
			ctx.shadowColor = "#000";
			ctx.strokeStyle = "rgb(222,184,135)";
			//ctx.fillStyle   = "rgb(186, 168, 132)";
			ctx.fillStyle   = "rgb(222,184,135)";
			ctx.arc(0,0,6,0,Math.PI*2,true);
			ctx.stroke();
			ctx.fill();
			ctx.restore();

			//一定時間経過後に再処理
			second=second+1;
			clearTimeout(timer);
			timer=setTimeout("clock()",995);
 
		}   // clock end
		</script>
	</head>
	<body onload="Init();">
		<div style="text-align:center; height:280px;"><canvas id="clockid"></canvas></div>
		<div id="now_server_text" style="text-align:center; font-size:20px; height:64px; line-height: 1.4;"></div>
		<div style="text-align:center;"><input type="button" value="サーバーの時刻を再読込" onclick="location.reload();" style="font-size:14px;" /></div>
	</body>
</html>