묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
홈페이지 이동하기전에 n초남았습니다 질문이요 송동우님봐주세요 ㅠ
2011.08.14 07:43
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>마인크래프트 24시간 kar 서버 - mine.eef.kr</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="autocomplete" content="off">
<META HTTP-EQUIV="Expires" CONTENT="Mon, 06 Jan 1990 00:00:01 GMT">
<META HTTP-EQUIV="Expires" CONTENT="-1">
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<META HTTP-EQUIV="Cache-Control" CONTENT="no-cache">
<link type="text/css" rel="stylesheet" href="//s.zz.gg/common.css?2">
<link type="text/css" rel="stylesheet" href="//s.zz.gg/infinite/infinite.css?2">
<link type="text/css" rel="stylesheet" href="//s.zz.gg/infinite/uiinput.css?2">
<script type="text/javascript" src="//s.zz.gg/jquery/jquery.js"></script>
<script type="text/javascript" src="//s.zz.gg/jquery/jquery-ui.js"></script>
<script type="text/javascript" src="//s.zz.gg/phpjs/php.js"></script>
<script type="text/javascript" src="//s.zz.gg/infinite/func.js?2"></script>
<script type="text/javascript" src="//s.zz.gg/infinite/uiinput.js?2"></script>
<link type="text/css" rel="stylesheet" href="//s.mine.eef.kr/style.css">
<!--[if IE 8]><link type="text/css" rel="stylesheet" href="//s.mine.eef.kr/style.ie8.css"><![endif]-->
<!--[if IE 7]><link type="text/css" rel="stylesheet" href="//s.mine.eef.kr/style.ie7.css"><![endif]-->
<!--[if lt IE 7]><link type="text/css" rel="stylesheet" href="//s.mine.eef.kr/style.ie6.css"><![endif]-->
<link type="text/css" rel="stylesheet" href="//s.zz.gg/jquery/jquery.ui.all.css">
<script type="text/javascript">
timeDif = time() - 1313275050;
view_idx = null;
</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-24978409-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
var timerSecs = 10;
setInterval(function(){
if (timerSecs <= 0)
{
location.href = "/idx.php";
return false;
}
$("#timer").html(timerSecs+"초 후에 실제 홈페이지로 자동이동합니다.<br>You will be redirect to real index in "+timerSecs+" seconds.");
timerSecs--;
},1000);
</script>
<style>
body { background: #f3f3f3; }
#timer { margin-top: 15px; letter-spacing: -1px; color: #a00; }
</style>
</head>
<body>
<div id="wrap" style="text-align: center; padding-top: 80px;">
<a href="http://minestatus.net/8503-mine-eef-kr/vote"><img src="http://s.mine.eef.kr/idx.png"></a>
<div id="timer" class="DotumKo"></div>
</div>
</body>
</html>
소스를 보라고 하셔서 봤는데...
뭘 복사해서 붙혀넣기해야되는지 모르겠습니다..
직접 공부해야될텐데 자꾸 이런 질문만하게 되서 죄송합니다 ㅠㅠ
저쪽 소스 주소는
mine.eef.kr 입니다 ㅠ_ㅠ
소스를 보라고 하셔서 봤는데...
뭘 복사해서 붙혀넣기해야되는지 모르겠습니다..
직접 공부해야될텐데 자꾸 이런 질문만하게 되서 죄송합니다 ㅠㅠ
저쪽 소스 주소는
mine.eef.kr 입니다 ㅠ_ㅠ
아래소스를 새로운 페이지에 넣고 테스트 해 보세요
그대로 사용해도 되고 내용을 원하는 대로 추가해서 사용해도 됩니다.
참고로.... 5초 뒤에 야후닷컴으로 이동하게 했습니다.
<!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=utf-8">
<script type="text/javascript">
var n = 5;
function counter()
{
time = window.setTimeout("counter()",1000);
document.getElementById("clock").innerHTML = ""+n+"";
if (n <= 0)
{
location.href="http://yahoo.com";
n = 0;
}
else
{
n -= 1;
}
}
window.onload = function()
{
counter();
}
</script>
</head>
<body>
<div>이 페이지는 <span id="clock"></span>초 후에 다른 페이지로 이동합니다</div>
</body>
</html>