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

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

오작교 26127

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
검색어 : 202408
번호 분류 제목 글쓴이 날짜 조회 추천
공지 HTML HTML 기초 다지기 4 오작교 08.06.17.16:26 289982 0
공지 HTML HTML과 CSS의 종합 정리 1 오작교 07.10.01.10:21 349008 0
공지 일반 스타일시트의 총정리 오작교 06.09.14.13:08 293610 +14
300
normal
오작교 23.12.10.09:32 14428 0
299 Script
normal
오작교 23.12.10.09:29 19709 0
298 CSS
normal
오작교 21.01.09.14:18 40650 0
297 HTML
normal
오작교 15.09.17.08:58 116252 0
296 HTML
normal
오작교 15.09.13.21:38 21525 0
295 HTML
normal
오작교 15.09.13.21:30 25098 0
294 HTML
normal
오작교 15.08.30.12:19 52713 0
293 Script
normal
오작교 15.05.12.14:06 21091 0
292 HTML
file
오작교 12.03.08.13:51 35865 0
291 HTML
normal
오작교 11.06.03.10:44 40685 0
290 CSS
normal
오작교 11.06.03.10:29 70588 0
289 Script
normal
오작교 11.03.22.11:19 43399 0
288 Script
normal
오작교 11.03.22.11:15 38154 0
287 Script
normal
오작교 11.03.22.11:07 37043 0
286 HTML
normal
오작교 11.01.25.10:27 36141 0
285 CSS
normal
오작교 11.01.24.10:40 35308 0
284 HTML
normal
오작교 11.01.24.10:39 37022 0
283 Script
normal
오작교 11.01.24.10:34 38042 0
282 CSS
normal
오작교 11.01.24.10:31 37669 0
281 CSS
normal
오작교 11.01.24.10:27 36146 0