COMING SOON 🚀

이미지 없이 모서리 라운드 테이블 만들어 최신글 구현

어디선가 낚시했다가 필요할것 같아 보관해 놓은 것인데 .
아마 모질라는 잘 모르겠습니다. ^^
링크 #1은 원본을 그대로 이용한 것이고
링크 #2는 최신글에 적용 시켜 보았습니다.


<HTML>
<HEAD>
<TITLE> 모서리 라운드테이블 </TITLE>
</HEAD>
<script>
function roundTable(objID) {
var obj = document.getElementById(objID);
var Parent, objTmp, Table, TBody, TR, TD;
var bdcolor, bgcolor, Space;
var trIDX, tdIDX, MAX;
var styleWidth, styleHeight;

// get parent node
Parent = obj.parentNode;
objTmp = document.createElement('SPAN');
Parent.insertBefore(objTmp, obj);
Parent.removeChild(obj);

// get attribute
bdcolor = obj.getAttribute('rborder');
bgcolor = obj.getAttribute('rbgcolor');
radius = parseInt(obj.getAttribute('radius'));
if (radius == null || radius < 1) radius = 1;
else if (radius > 6) radius = 6;

MAX = radius * 2 + 1;

/*
create table {{
*/
Table = document.createElement('TABLE');
TBody = document.createElement('TBODY');

Table.cellSpacing = 0;
Table.cellPadding = 0;

for (trIDX=0; trIDX < MAX; trIDX++) {
TR = document.createElement('TR');
TD = document.createElement('TD');

styleWidth = '1px'; styleHeight = '1px';
if (tdIDX == 0 || tdIDX == MAX - 1) styleHeight = null;
else if (trIDX == 0 || trIDX == MAX - 1) styleWidth = null;
else if (radius > 2) {
if (Math.abs(tdIDX - radius) == 1) styleWidth = '2px';
if (Math.abs(trIDX - radius) == 1) styleHeight = '2px';
}

if (styleWidth != null) TD.style.width = styleWidth;
if (styleHeight != null) TD.style.height = styleHeight;

if (Space == tdIDX || Space == MAX - tdIDX - 1) TD.style.backgroundColor = bdcolor;
else if (tdIDX > Space && Space < MAX - tdIDX - 1) TD.style.backgroundColor = bgcolor;

if (Space == 0 && tdIDX == radius) TD.appendChild(obj);
TR.appendChild(TD);
}
TBody.appendChild(TR);
}

/*
}}
*/

Table.appendChild(TBody);

// insert table and remove original table
Parent.insertBefore(Table, objTmp);
}
</script>

<BODY>
<table id="ta" width="300" height="150" border="0" radius="3" rborder="#999999" rbgcolor="#F8F8F8">
<tr>
<td valign="top">테스트입니다</td>
</tr>
</table>
<script>roundTable("ta");</script>

</BODY>
</HTML><div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 16:54:41 CSS에서 이동 됨]</div>
|

댓글 11개

감사합니다.
불여우에서 잘됩니다.
링크주소 참조
멋진 팁 이군요....

꼭 써보고 싶네요...감사합니다..
라운드 테이블
blueb에서 본 스크립트네요
모질라도 잘 되는군요
너무 감사합니다^-^
이 소스는
Space = Math.abs(trIDX - parseInt(radius));
for (tdIDX=0; tdIDX < MAX; tdIDX++) {

이게 빠져서 에러납니다.

링크 참조하세요.
감사합니다!!
링크가 열리지 않습니다
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
20년 전 조회 2,938
20년 전 조회 3,225
20년 전 조회 2,998
bbbking
20년 전 조회 5,971
20년 전 조회 2,898
bbbking
20년 전 조회 4,476
20년 전 조회 2,353
20년 전 조회 7,514
20년 전 조회 2,619
20년 전 조회 3,691
20년 전 조회 4,490
20년 전 조회 2,815
20년 전 조회 4,108
20년 전 조회 3,266
20년 전 조회 4,278
20년 전 조회 5,310
20년 전 조회 4,418
20년 전 조회 6,036
20년 전 조회 2,248
20년 전 조회 3,503
20년 전 조회 3,724
20년 전 조회 3,121
20년 전 조회 2,624
20년 전 조회 4,861
20년 전 조회 2,470
20년 전 조회 2,449
20년 전 조회 2,066
20년 전 조회 1,866
20년 전 조회 3,944
20년 전 조회 5,040
20년 전 조회 2,659
20년 전 조회 3,340
20년 전 조회 6,027
20년 전 조회 3,024
20년 전 조회 2,490
20년 전 조회 4,766
20년 전 조회 2,848
20년 전 조회 2,421
20년 전 조회 2,961
20년 전 조회 2,764
20년 전 조회 3,074
20년 전 조회 3,527
20년 전 조회 2,838
20년 전 조회 4,933
20년 전 조회 3,463
20년 전 조회 4,731
20년 전 조회 3,199
20년 전 조회 4,327
20년 전 조회 4,575
20년 전 조회 7,224
20년 전 조회 4,057
20년 전 조회 2,952
20년 전 조회 4,593
20년 전 조회 2,402
20년 전 조회 4,515
20년 전 조회 3,965
20년 전 조회 2,781
20년 전 조회 5,024
bbbking
20년 전 조회 2,736
20년 전 조회 4,683
20년 전 조회 3,746
20년 전 조회 3,757
20년 전 조회 4,003
20년 전 조회 3,396
20년 전 조회 6,102
20년 전 조회 3,122
20년 전 조회 6,028
bbbking
20년 전 조회 2,548
bbbking
20년 전 조회 1,955
bbbking
20년 전 조회 2,328
bbbking
20년 전 조회 3,718
bbbking
20년 전 조회 2,210
bbbking
20년 전 조회 4,583
20년 전 조회 3,558
bbbking
20년 전 조회 2,378
bbbking
20년 전 조회 7,976
20년 전 조회 5,725
20년 전 조회 3,178
20년 전 조회 5,757
20년 전 조회 2,541
20년 전 조회 2,775
20년 전 조회 2,531
20년 전 조회 2,394
20년 전 조회 2,324
20년 전 조회 2,772
20년 전 조회 2,746
20년 전 조회 2,649
20년 전 조회 2,843
20년 전 조회 2,543
20년 전 조회 2,759
20년 전 조회 3,678
bbbking
20년 전 조회 5,529
20년 전 조회 3,914
20년 전 조회 3,357
20년 전 조회 6,113
bbbking
20년 전 조회 5,912
20년 전 조회 4,318
20년 전 조회 2,579
20년 전 조회 3,357
20년 전 조회 2,089