• 돌아가기
  • 아래로
  • 위로
  • 목록
  • 댓글
Script

모서리가 둥근 테이블 만들기

오작교 26155

0
Radius 값이 2일때 :
Cell 1 Cell 2
모서리가 둥근 테이블 테스트

Radius 값이 6일때 :
Cell 1 Cell 2
모서리가 둥근 테이블 테스트

 

<head>
<title>https://www.dajuji.com</title>
<script language="javascript">

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;

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

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;

Table = document.createElement('TABLE');
TBody = document.createElement('TBODY');

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

for (trIDX=0; trIDX < MAX; trIDX++) {
TR = document.createElement('TR');
Space = Math.abs(trIDX - parseInt(radius));
for (tdIDX=0; tdIDX < MAX; tdIDX++) {
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);
Parent.insertBefore(Table, objTmp);
}
</script>
</head>
<body>

<center>
<b>Radius 값이 2일때 :</b><br>
<table id="ta" width="300" height="150" border="0" radius="2" rborder="#999999" rbgcolor="#F8F8F8">
<tr>
<td>Cell 1</td>
<td>Cell 2</td>
</tr>
<tr>
<td colspan="2">모서리가 둥근 테이블 테스트</td>
</tr>
</table>
<script>roundTable("ta");</script><br>

<b>Radius 값이 6일때 :</b><br>
<table id="ta1" width="300" height="150" border="0" radius="6" rborder="#999999" rbgcolor="#F8F8F8">
<tr>
<td>Cell 1</td>
<td>Cell 2</td>
</tr>
<tr>
<td colspan="2">모서리가 둥근 테이블 테스트</td>
</tr>
</table>
<script>roundTable("ta1");</script></body>

출처 : Tong - ddakzzi님의 Tag&Script통

공유
0

댓글 쓰기 권한이 없습니다. 로그인

취소 댓글 등록

신고

"님의 댓글"

이 댓글을 신고하시겠습니까?

댓글 삭제

"님의 댓글"

삭제하시겠습니까?

목록

공유

facebooktwitterpinterestbandkakao story
번호 분류 제목 글쓴이 날짜 조회 추천
공지 HTML HTML 기초 다지기 4 오작교 08.06.17.16:26 290519 0
공지 HTML HTML과 CSS의 종합 정리 1 오작교 07.10.01.10:21 349531 0
공지 일반 스타일시트의 총정리 오작교 06.09.14.13:08 294137 +14
87 Script
normal
오작교 23.12.10.09:29 19814 0
86 Script
normal
오작교 15.05.12.14:06 21192 0
85 Script
normal
오작교 11.03.22.11:19 43488 0
84 Script
normal
오작교 11.03.22.11:15 38252 0
83 Script
normal
오작교 11.03.22.11:07 37142 0
82 Script
normal
오작교 11.01.24.10:34 38135 0
81 Script
normal
오작교 10.04.10.21:43 44190 0
80 Script
normal
오작교 09.04.14.15:52 21458 0
79 Script
normal
오작교 09.02.26.19:30 44421 0
78 Script
normal
오작교 09.02.03.16:06 29965 0
77 Script
normal
오작교 09.02.03.16:05 30062 0
76 Script
normal
오작교 08.08.08.11:58 30878 0
75 Script
normal
오작교 08.07.08.09:23 23989 0
74 Script
normal
오작교 08.01.08.13:26 36963 0
73 Script
normal
오작교 08.01.07.13:00 40768 0
72 Script
normal
오작교 08.01.07.12:52 23817 0
71 Script
normal
오작교 07.10.23.17:18 38386 0
70 Script
normal
오작교 07.10.23.17:16 29180 0
69 Script
normal
오작교 07.10.23.17:14 28214 0
68 Script
normal
오작교 07.10.23.17:08 27627 0