<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr">
<title>새 페이지 1</title>
<style>
BODY{
scrollbar-face-color:#999999;
scrollbar-shadow-color:#FFFFFF;
scrollbar-highlight-color:#FFFFFF;
scrollbar-3dlight-color:#999999;
scrollbar-darkshadow-color:#999999;
scrollbar-track-color:#EEEEEE;
scrollbar-arrow-color:#FFFFFF;
}
td {font-family: "Verdana", "Arial", "Helvetica", "sans-serif", "돋움";font-size: 12px;color: #666666; line-height:16px;}
a:link {color:#515151; text-decoration: none; font-family: "돋움"; font-size: 12px}
a:visited {color:#515151; text-decoration: none; font-family: "돋움"; font-size: 12px}
a:hover {color:#515151; text-decoration: underline; font-family: "돋움"; font-size: 12px}
.news {color: 333333; font-size: 12px; font-weight:bold;}
.news02 {color: 7d7d7d; font-size: 12px;}
.pop {color: 666666; font-size: 12px}
.live1 {color: c3f9f3; font-size: 12px; line-height:14px;}
.live2 {color: ffffff; font-size: 12px; line-height:14px;}
.greeting {color: ffffff; font-size: 11px; line-height:14px;}
.food01 {color:447805; font-size: 12px; line-height:14px;}
.food02 {color:447805; font-size: 11px; line-height:14px;}
.blue {color: 0042ff; font-size: 12px;}
.white_sm {color: ffffff; font-size: 11px;}
.price {color: ff6600; font-size: 12px; font-weight:bold;}
.price02 {color: e70000; font-size: 12px; font-weight:bold;}
.price03 {color: 006cff; font-size: 12px; font-weight:bold;}
.price04 {color: 005784; font-size: 12px; font-weight:bold;}
.detail01 {color: 626262; font-size: 11px;line-height:17px;}
.detail02 {color: 0074d7; font-size: 11px;line-height:17px;}
.select {
background-color:ffffff;
color:c7c7c7;
height="18" ;
font-size: 10pt;
color: 676767;
font-family: 돋움;
border-top-style: solid;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
border-top-color: e0e0e0;
border-right-color: e0e0e0;
border-bottom-color: e0e0e0;
border-left-color: e0e0e0;
border-top-width: 1px;
border-right-width: 1px;
border-bottom-width: 1px;
border-left-width: 1px;
}
.select2 {
background-color:ffffff;
color:c7c7c7;
height="17" ;
font-size: 8pt;
color: 676767;
font-family: 돋움;
border-top-style: solid;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
border-top-color: dddddd;
border-right-color: dddddd;
border-bottom-color: dddddd;
border-left-color: dddddd;
border-top-width: 1px;
border-right-width: 1px;
border-bottom-width: 1px;
border-left-width: 1px;
}
</style>
</head>
<body topmargin="0" leftmargin="0" bgcolor='#081935' oncontextmenu="return false" ondragstart="return false" onselectstart="return false">
<SCRIPT language="Javascript1.2">
<!--
// 기본정의
TextSlider = function(className)
{
document.write("<div id='TextSliderPLayer_"+ className +"'><div id='TextSliderLayer_"+ className +"'></div></div>");
this.item = [];
this.width = this.height = this.speed = this.pixel = this.interval =
this.size = this.moveCount = this.X = this.Y = 0;
this.direction = "";
this.pLayer = document.getElementById("TextSliderPLayer_"+ className);
this.layer = document.getElementById("TextSliderLayer_"+ className);
this.align = "left";
this.intervalId = null;
this.className = className;
this.isPause = false;
}
// 활성화
TextSlider.prototype.init = function()
{
with (this.pLayer.style)
{
width = this.width+"px";
height = this.height+"px";
overflow = "hidden";
}
with (this.layer.style)
{
width = this.direction=='up' || this.direction=='down' ? this.width+"px" : this.size*(this.item.length+1)+"px";
height = this.direction=='up' || this.direction=='down' ? this.size*(this.item.length+1)+"px" : this.height+"px";
top = 0;
left = 0;
position = "relative";
}
for (var i=0; i<parseInt(this.height / this.size, 10)+1; i++)
this.item[this.item.length] = this.item[i];
switch (this.direction)
{
case "up": this.X = this.Y = 0; break;
case "down": this.X = 0; this.layer.style.top = this.Y = -this.size*(this.item.length-parseInt(5)); break;
case "left": this.X = this.Y = 0; break;
case "right": this.Y = 0; this.layer.style.left = this.X = -this.width*(this.item.length-1); break;
}
var __html = "<div onmouseover='"+this.className+".pause()' onmouseout='"+this.className+".unpause()'>";
if (this.direction=='up' || this.direction=='down')
{
__html += "<table width='"+ this.layer.style.width +"' cellspacing='0' cellpadding='0' border='0'>";
for (var i in this.item)
__html += "<tr><td height='"+this.size+"' style='overflow:hidden' align='"+this.align+"' valign='middle'>"+this.item[i]+"</td></tr>";
__html += "</table>";
}
else
{
__html += "<table cellspacing='0' cellpadding='0' border='0'><tr>";
for (var i in this.item)
__html += "<td width='"+this.size+"' height='"+ this.layer.style.height +"' align='"+this.align+"' \
valign='middle' style='overflow:hidden;'>"+this.item[i]+"</td>";
__html += "</tr></table>";
}
__html += "</div>";
this.layer.innerHTML = __html;
setTimeout(this.className+".start()", 1000); // 시작후 멈추는 시간
}
// 액션 Start
TextSlider.prototype.start = function()
{
this.intervalId = setInterval(this.className+".move()", this.speed);
}
// 좌표이동
TextSlider.prototype.move = function()
{
if (this.isPause) return;
switch (this.direction)
{
case "up": this.Y -= this.pixel; break;
case "down": this.Y += this.pixel; break;
case "left": this.X -= this.pixel; break;
case "right": this.X += this.pixel; break;
}
if (this.direction=='up' || this.direction=='down')
{
if (Math.abs(this.Y)%this.size==0) this.stop();
this.layer.style.top = this.Y;
}
else
{
if (Math.abs(this.X)%parseInt(100)==0) this.stop();
this.layer.style.left = this.X;
}
}
// direction에 따라 Stop/좌표지정
TextSlider.prototype.stop = function()
{
clearInterval(this.intervalId);
switch (this.direction)
{
case "up":
if (Math.abs(this.Y) >= parseInt(this.layer.style.height,10)-this.size) this.Y = this.layer.style.top = 0;
break;
case "down":
if (Math.abs(this.Y) <= 0) this.Y = this.layer.style.top = -this.size*(this.item.length-parseInt(5))
break;
case "left":
if (Math.abs(this.X) >= parseInt(100)*parseInt(34)) this.X = this.layer.style.left = 0;
break;
case "right":
if (Math.abs(this.X) <= 0) this.X = this.layer.style.left = -this.width*(this.item.length-1);
break;
}
setTimeout(this.className+".start()", this.interval);
}
// Pause : Unpause
TextSlider.prototype.pause = function() {this.isPause = true;}
TextSlider.prototype.unpause = function() {this.isPause = false;}
// 기본설정
var PM1 = new TextSlider('PM1'); // 클래스 명을 인자로 넘긴다.
PM1.width = 450; // Ticker의 가로길이
PM1.height = 15; // Ticker의 세로길이
PM1.speed = 20; // text가 slide되는 빠르기. 단위는 ms
PM1.pixel = 5; // text가 한번 slide할 때 움직일 픽셀.
PM1.interval = 4000; // text가 slide된 후 다음 text가 slide되기 까지의 대기시간
PM1.size = 15; // text간의 간격. height와 같거나 크게 하여야 제대로 보인다.
PM1.direction = 'up'; // text가 slide될 방향
PM1.item[0] = "<div style='width:450px;height:15px;overflow:hidden'>";
PM1.item[0] += "<table width='100%' border='0' cellspacing='0' cellpadding='0' align='left' bgcolor='#081935'>";
PM1.item[0] += "<tr><td style='padding:0 0 0 0;'>";
PM1.item[0] += "<table width='100%' border='0' cellspacing='0' cellpadding='0'>";
PM1.item[0] += "<tr><td height='15' class='txtad_txt2'>";
PM1.item[0] += "<span> <font color='#ffffff'> 무도코리아</font></span>";
PM1.item[0] += "</td></tr>";
PM1.item[0] += "</table>";
PM1.item[0] += "</td></tr></table>";
PM1.item[0] += "</div>";
PM1.item[1] = "<div style='width:450px;height:15px;overflow:hidden'>";
PM1.item[1] += "<table width='100%' border='0' cellspacing='0' cellpadding='0' align='left' bgcolor='#081935'>";
PM1.item[1] += "<tr><td style='padding:0 0 0 0;'>";
PM1.item[1] += "<table width='100%' border='0' cellspacing='0' cellpadding='0'>";
PM1.item[1] += "<tr><td height='15' class='txtad_txt2'>";
PM1.item[1] += "<span> <font color='#ffffff'> 무술용품 초특가 할인</font></span>";
PM1.item[1] += "</td></tr>";
PM1.item[1] += "</table>";
PM1.item[1] += "</td></tr></table>";
PM1.item[1] += "</div>";
PM1.item[2] = "<div style='width:450px;height:15px;overflow:hidden'>";
PM1.item[2] += "<table width='100%' border='0' cellspacing='0' cellpadding='0' align='left' bgcolor='#081935'>";
PM1.item[2] += "<tr><td style='padding:0 0 0 0;'>";
PM1.item[2] += "<table width='100%' border='0' cellspacing='0' cellpadding='0'>";
PM1.item[2] += "<tr><td height='15' class='txtad_txt2'>";
PM1.item[2] += "<span> <font color='#ffffff'>격투기의 모든것</font></span>";
PM1.item[2] += "</td></tr>";
PM1.item[2] += "</table>";
PM1.item[2] += "</td></tr></table>";
PM1.item[2] += "</div>";
PM1.item[3] = "<div style='width:450px;height:15px;overflow:hidden'>";
PM1.item[3] += "<table width='100%' border='0' cellspacing='0' cellpadding='0' align='left' bgcolor='#081935'>";
PM1.item[3] += "<tr><td style='padding:0 0 0 0;'>";
PM1.item[3] += "<table width='100%' border='0' cellspacing='0' cellpadding='0'>";
PM1.item[3] += "<tr><td height='15' class='txtad_txt2'>";
PM1.item[3] += "<span> <font color='#ffffff'>킥복싱/가라데/유도/합기도</font></span>";
PM1.item[3] += "</td></tr>";
PM1.item[3] += "</table>";
PM1.item[3] += "</td></tr></table>";
PM1.item[3] += "</div>";
PM1.item[4] = "<div style='width:450px;height:15px;overflow:hidden'>";
PM1.item[4] += "<table width='100%' border='0' cellspacing='0' cellpadding='0' align='left' bgcolor='#081935'>";
PM1.item[4] += "<tr><td style='padding:0 0 0 0;'>";
PM1.item[4] += "<table width='100%' border='0' cellspacing='0' cellpadding='0'>";
PM1.item[4] += "<tr><td height='15' class='txtad_txt2'>";
PM1.item[4] += "<span> <font color='#ffffff'>http://www.moodokorea.com</font></span>";
PM1.item[4] += "</td></tr>";
PM1.item[4] += "</table>";
PM1.item[4] += "</td></tr></table>";
PM1.item[4] += "</div>";
PM1.init(); // TextSlider의 작동을 지시한다.
//-->
</script>
</body>
</html>
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7730 | 10년 전 | 1315 | ||
| 7729 | 10년 전 | 1172 | ||
| 7728 |
잘살아보자
|
10년 전 | 614 | |
| 7727 |
잘살아보자
|
10년 전 | 510 | |
| 7726 |
잘살아보자
|
10년 전 | 842 | |
| 7725 |
잘살아보자
|
10년 전 | 568 | |
| 7724 |
잘살아보자
|
10년 전 | 484 | |
| 7723 |
잘살아보자
|
10년 전 | 548 | |
| 7722 |
잘살아보자
|
10년 전 | 488 | |
| 7721 |
잘살아보자
|
10년 전 | 518 | |
| 7720 |
잘살아보자
|
10년 전 | 483 | |
| 7719 |
비긴어게인
|
10년 전 | 701 | |
| 7718 |
|
10년 전 | 2548 | |
| 7717 |
잘살아보자
|
10년 전 | 670 | |
| 7716 |
잘살아보자
|
10년 전 | 413 | |
| 7715 |
잘살아보자
|
10년 전 | 446 | |
| 7714 |
잘살아보자
|
10년 전 | 511 | |
| 7713 | 10년 전 | 1792 | ||
| 7712 | 10년 전 | 1730 | ||
| 7711 | 10년 전 | 1115 | ||
| 7710 | 10년 전 | 1408 | ||
| 7709 | 10년 전 | 1529 | ||
| 7708 | 10년 전 | 1468 | ||
| 7707 | 10년 전 | 866 | ||
| 7706 |
별지기천사
|
10년 전 | 580 | |
| 7705 | 10년 전 | 1085 | ||
| 7704 |
ICONdesignstudio
|
10년 전 | 638 | |
| 7703 | 10년 전 | 605 | ||
| 7702 |
|
10년 전 | 742 | |
| 7701 | 10년 전 | 1430 | ||
| 7700 | 10년 전 | 1116 | ||
| 7699 | 10년 전 | 586 | ||
| 7698 | 10년 전 | 1158 | ||
| 7697 | 10년 전 | 5181 | ||
| 7696 | 10년 전 | 672 | ||
| 7695 | 10년 전 | 1697 | ||
| 7694 | 10년 전 | 1081 | ||
| 7693 | 10년 전 | 1568 | ||
| 7692 | 10년 전 | 1312 | ||
| 7691 | 10년 전 | 836 | ||
| 7690 | 10년 전 | 1398 | ||
| 7689 | 10년 전 | 1028 | ||
| 7688 | 10년 전 | 634 | ||
| 7687 |
파랑새1597
|
10년 전 | 613 | |
| 7686 | 10년 전 | 864 | ||
| 7685 | 10년 전 | 1352 | ||
| 7684 | 10년 전 | 811 | ||
| 7683 | 10년 전 | 1119 | ||
| 7682 | 10년 전 | 1038 | ||
| 7681 | 10년 전 | 681 | ||
| 7680 | 10년 전 | 998 | ||
| 7679 | 10년 전 | 521 | ||
| 7678 | 10년 전 | 750 | ||
| 7677 | 10년 전 | 652 | ||
| 7676 |
|
10년 전 | 958 | |
| 7675 |
|
10년 전 | 1193 | |
| 7674 | 10년 전 | 1057 | ||
| 7673 | 10년 전 | 765 | ||
| 7672 | 10년 전 | 1106 | ||
| 7671 | 10년 전 | 915 | ||
| 7670 | 10년 전 | 684 | ||
| 7669 |
mashmellow
|
10년 전 | 1240 | |
| 7668 | 10년 전 | 729 | ||
| 7667 | 10년 전 | 1026 | ||
| 7666 |
senseme
|
10년 전 | 669 | |
| 7665 | 10년 전 | 523 | ||
| 7664 | 10년 전 | 1907 | ||
| 7663 |
mixx애교
|
10년 전 | 988 | |
| 7662 | 10년 전 | 1058 | ||
| 7661 |
hkhkah
|
10년 전 | 801 | |
| 7660 | 10년 전 | 1076 | ||
| 7659 |
커네드커네드
|
10년 전 | 946 | |
| 7658 |
바람돌이팡
|
10년 전 | 687 | |
| 7657 | 10년 전 | 1176 | ||
| 7656 | 10년 전 | 1587 | ||
| 7655 | 10년 전 | 1006 | ||
| 7654 |
개발짜증나
|
10년 전 | 868 | |
| 7653 |
네이비칼라
|
10년 전 | 891 | |
| 7652 |
밥먹고합시다
|
10년 전 | 819 | |
| 7651 |
플라이SINJI
|
10년 전 | 1522 | |
| 7650 |
개발짜증나
|
10년 전 | 1430 | |
| 7649 | 10년 전 | 461 | ||
| 7648 |
이미영ㅇㅇ
|
10년 전 | 882 | |
| 7647 | 10년 전 | 453 | ||
| 7646 | 10년 전 | 823 | ||
| 7645 | 10년 전 | 2334 | ||
| 7644 | 10년 전 | 829 | ||
| 7643 |
|
10년 전 | 2883 | |
| 7642 | 10년 전 | 1527 | ||
| 7641 | 10년 전 | 1150 | ||
| 7640 |
개발짜증나
|
10년 전 | 479 | |
| 7639 |
|
10년 전 | 823 | |
| 7638 |
개발짜증나
|
10년 전 | 1145 | |
| 7637 | 10년 전 | 1565 | ||
| 7636 | 10년 전 | 2921 | ||
| 7635 | 10년 전 | 1711 | ||
| 7634 | 10년 전 | 1899 | ||
| 7633 | 10년 전 | 2359 | ||
| 7632 | 10년 전 | 3967 | ||
| 7631 |
|
10년 전 | 1554 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기