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

어디선가 낚시했다가 필요할것 같아 보관해 놓은 것인데 .
아마 모질라는 잘 모르겠습니다. ^^
링크 #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++) {

이게 빠져서 에러납니다.

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

프로그램

태그 필터 (최대 3개) 전체 개발자 소스 기타 mysql 팁자료실 javascript php linux flash 정규표현식 jquery node.js mobile 웹서버 os 프로그램 강좌 썸네일 이미지관련 도로명주소 그누보드5 기획자 견적서 계약서 기획서 마케팅 제안서 seo 통계 서식 통계자료 퍼블리셔 html css 반응형 웹접근성 퍼블리싱 표준화 반응형웹 홈페이지기초 부트스트랩 angularjs 포럼 스크린리더 센스리더 개발자톡 개발자팁 퍼블리셔톡 퍼블리셔팁 기획자톡 기획자팁 프로그램강좌 퍼블리싱강좌
+
제목 글쓴이 날짜 조회
20년 전 조회 2,842
20년 전 조회 3,126
20년 전 조회 2,891
bbbking
20년 전 조회 5,880
20년 전 조회 2,799
bbbking
20년 전 조회 4,384
20년 전 조회 2,250
20년 전 조회 7,429
20년 전 조회 2,517
20년 전 조회 3,595
20년 전 조회 4,403
20년 전 조회 2,731
20년 전 조회 4,011
20년 전 조회 3,176
20년 전 조회 4,185
20년 전 조회 5,221
20년 전 조회 4,325
20년 전 조회 5,952
20년 전 조회 2,150
20년 전 조회 3,423
20년 전 조회 3,638
20년 전 조회 3,031
20년 전 조회 2,542
20년 전 조회 4,762
20년 전 조회 2,397
20년 전 조회 2,370
20년 전 조회 1,992
20년 전 조회 1,796
20년 전 조회 3,869
20년 전 조회 4,947
20년 전 조회 2,578
20년 전 조회 3,254
20년 전 조회 5,940
20년 전 조회 2,942
20년 전 조회 2,405
20년 전 조회 4,678
20년 전 조회 2,755
20년 전 조회 2,340
20년 전 조회 2,866
20년 전 조회 2,667
20년 전 조회 2,989
20년 전 조회 3,430
20년 전 조회 2,762
20년 전 조회 4,841
20년 전 조회 3,368
20년 전 조회 4,644
20년 전 조회 3,109
20년 전 조회 4,235
20년 전 조회 4,475
20년 전 조회 7,143
20년 전 조회 3,975
20년 전 조회 2,867
20년 전 조회 4,497
20년 전 조회 2,319
20년 전 조회 4,429
20년 전 조회 3,888
20년 전 조회 2,692
20년 전 조회 4,939
bbbking
20년 전 조회 2,640
20년 전 조회 4,595
20년 전 조회 3,662
20년 전 조회 3,672
20년 전 조회 3,925
20년 전 조회 3,308
20년 전 조회 6,023
20년 전 조회 3,033
20년 전 조회 5,937
bbbking
20년 전 조회 2,455
bbbking
20년 전 조회 1,872
bbbking
20년 전 조회 2,243
bbbking
20년 전 조회 3,633
bbbking
20년 전 조회 2,137
bbbking
20년 전 조회 4,501
20년 전 조회 3,464
bbbking
20년 전 조회 2,308
bbbking
20년 전 조회 7,888
20년 전 조회 5,642
20년 전 조회 3,101
20년 전 조회 5,670
20년 전 조회 2,458
20년 전 조회 2,685
20년 전 조회 2,452
20년 전 조회 2,300
20년 전 조회 2,230
20년 전 조회 2,683
20년 전 조회 2,666
20년 전 조회 2,563
20년 전 조회 2,762
20년 전 조회 2,459
20년 전 조회 2,673
20년 전 조회 3,596
bbbking
20년 전 조회 5,448
20년 전 조회 3,812
20년 전 조회 3,264
20년 전 조회 6,019
bbbking
20년 전 조회 5,827
20년 전 조회 4,226
20년 전 조회 2,480
20년 전 조회 3,278
20년 전 조회 2,004