戻る ログ一覧 全部 1-100

うごくメモ帳3D1周年カウントダウンスレ ★

1:2014/06/22(日) 22:08:33 ID:???
うごくメモ帳3D配信から1周年を迎える7月24日までカウントダウンするスレです。

【注意事項】
・次スレは>>950を過ぎた時点で私が立てさせて頂きます。
・雑談もしても構いませんが喧嘩はしないようお願いします。
・あくまでカウントダウンスレなので、レスの内容に関わらず最後に「残り○○日○○時間○○分」と付けるとそれっぽくなりそう。
・自己紹介や挨拶は不要です。むしろウザがられる元なので自重した方が良いです。

34うごく名無しさん:2014/06/22(日) 23:40:45 ID:hpT6CGi6
innerhtml使っちゃ駄目なの?

<span id="countdown"></span>
<script language="JavaScript">
<!--
window.onload=showday;
year=2014; //年
mon=7; //月
day=24; //日
time=0; //時
xday = new Date(year,mon-1,day,time,00,00);//基準になる年月日
function showday() {
nowday = new Date();
passtime= xday.getTime()-nowday.getTime(); //今から基準になる日までの経過時間 1/1000秒単位

cnt_day = Math.floor(passtime/(1000*60*60*24));// カウントダウン表示 (日にち) の取得
passtime = passtime -(cnt_day*(1000*60*60*24)); // 経過秒から(日にち)を引く

cnt_hour = Math.floor(passtime/(1000*60*60));// カウントダウン表示 (時) の取得
passtime = passtime -(cnt_hour*(1000*60*60)); // 経過秒から(時)を引く

cnt_min = Math.floor(passtime/(1000*60)); // カウントダウン表示 (分) 取得
passtime = passtime -(cnt_min*(1000*60));// 経過秒から(分)を引く

cnt_sec = Math.floor(passtime/1000);// カウントダウン表示 (秒) 取得
passtime = passtime -(cnt_sec*(1000)); // 経過秒から(秒)を引く

cnt_millisec = Math.floor(passtime/10); // カウントダウン表示 (100/1秒) 取得

// 分、秒、ミリ秒を2桁で表示する。
if(cnt_min<10){cnt_min = '0' + cnt_min;}
if(cnt_sec<10){cnt_sec = '0' + cnt_sec;}
if(cnt_millisec<10){cnt_millisec = '0' + cnt_millisec;}

if((xday - nowday) > 0){
document.getElementById("countdown").innerHTML = "うごくメモ帳3D配信1周年まで "+cnt_day+"日と "+cnt_hour+"時間"+cnt_min+"分"+cnt_sec+"秒"+cnt_millisec+" です!"
}else{
document.getElementById("countdown").innerHTML = "うごくメモ帳3D配信1周年です!"
}
timerID = setTimeout('showday()', 10);
}
// -->
</script>

35ゆうせい ◆nKE3rr9dFg:2014/06/22(日) 23:52:31 ID:tRpAaRzI
htmlヘッダーに
<style type="text/css">
<!--
#center{
height:150px;
width:900px;
position:absolute;
top:20%;
left:50%;
margin-top:-100px;
margin-left:-250px;
border:solid 0px #666666;
}
-->
</style>
これを貼り付け
表示させたい場所に
<IFRAME SRC="http://whiteplanet.html.xdomain.jp/count.html"; name="a"
id="center"frameborder="no" bordercolor="0000ff"
scrolling="no" marginwidth="50" marginheight="50"
width="890" height="150" align="center">
お使いのブラウザでは表示できません。
</IFRAME>
これを貼り付けならできるかも

全部 前100 次100 戻る ログ一覧


datread.php ver1.00.0:20150104 ◆nemuI.oaYM
1ミリ秒