게임 방법
마우스을 눌르고 있으면 헬기가 상승 하고 마우스 안 눌르고 있으면 하락 합니다
헬기 게임
마우스로
헬기를 조종
할 수 있습니다.
<SCRIPT>
var str_lusrid = 'retona1969';
function prepare_mood_change ()
{
document.all.div_face.style.visibility = "visible";
document.all.div_face.style.top = window.event.y+document.body.scrollTop;
document.all.div_face.style.left = window.event.x+document.body.scrollLeft;
}
function doAddTailmsg(lusrid, dusername, iconimg, regdate, tail, securityKey, popup_menu)
{
document.fo_tail_add.tail.value = "";
doWriteTailmsg(lusrid, dusername, iconimg, regdate, tail, securityKey, popup_menu);
document.fo_tail_add.tail.focus();
}
function doWriteTailmsg(lusrid, dusername, iconimg, regdate, tail, securityKey, popup_menu)
{
var newRow, newCell;
var obj_regdate = new Date(regdate*1000);
var str_date = (obj_regdate.getDate() >= 10)?obj_regdate.getDate():"0"+obj_regdate.getDate();
var str_hours = (obj_regdate.getHours() >= 10)?obj_regdate.getHours():"0"+obj_regdate.getHours();
var str_minutes = (obj_regdate.getMinutes() >= 10)?obj_regdate.getMinutes():"0"+obj_regdate.getMinutes();
var str_regdate = (obj_regdate.getMonth()+1)+"/"+str_date+", "+str_hours+":"+str_minutes;
var amp = /&/g;
tail = tail.replace(amp, "&");
if (tailmsg_addon.rows.length == 0)
{
tailmsg_line.cellSpacing = 10;
newRow = tailmsg_line.insertRow();
newCell = newRow.insertCell();
newRow.height = 1;
newRow.bgColor = "#DF9D39";
tailmsg_gap.cellSpacing = 3;
newRow = tailmsg_gap.insertRow();
newCell = newRow.insertCell();
tailmsg_addon.cellPadding = 2;
}
if (popup_menu == "")
popup_menu = "elMenu1";
newRow = tailmsg_addon.insertRow();
newRow.name = "tail_"+regdate;
newCell = newRow.insertCell();
newCell.width = 12;
newCell.innerHTML = " ";
newCell = newRow.insertCell();
newCell.width = 29;
newCell.innerHTML = iconimg+" ";
newCell = newRow.insertCell();
if (str_lusrid != "")
newCell.innerHTML = gen_pa_str(lusrid, popup_menu, dusername)+" ("+str_regdate+") : "+tail;
else
newCell.innerHTML = dusername+" ("+str_regdate+") : "+tail;
if (securityKey != "")
newCell.innerHTML += "
☞꼬리삭제";
newCell = newRow.insertCell();
newCell.width = 12;
newCell.innerHTML = " ";
}
function doDeleteTailmsg(regdate, securityKey)
{
if (confirm('꼬리말을 삭제하시겠습니까?'))
{
document.fo_tail_del.regdate.value = regdate;
document.fo_tail_del.securityKey.value = securityKey;
document.fo_tail_del.submit();
}
}
function doEraseTailmsg(regdate)
{
for (var i=0; i