[스크립트] 이미지 없는 둥글게 테두리 DIV
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>이미지 없이 라운딩 박스 + 보더 표현하기!</title>
<style>
* {font-size:12px;}
#test {padding:3px;}
</style>
</head>
<body>
<div id='test'>이미지 없이 라운딩 박스 + 보더 표현하기!</div>
<script>
function round(elm, bgcolor, border, mode) {
var top = document.createElement('div'); top.style.cssText = 'height:5px';
var bottom = document.createElement('div');bottom.style.cssText = 'height:5px';
var temp = document.createElement('div'); temp.setAttribute('id', 'template');
var border2 = (border) ? ";border-left:2px solid "+border+";border-right:2px solid "+border : "";
var border1 = (border) ? ";border-left:1px solid "+border+";border-right:1px solid "+border : "";
var bgcolor2 = (bgcolor) ? ";background:"+bgcolor : "";
var bgcolor1 = (border) ? ";background:" + border : (bgcolor) ? ";background:" + bgcolor : "";
var top_r = new Array(), bottom_r =new Array;
var box = elm.cloneNode(true)
for (i=1; i < 5 ;i++ )
{ top_r[i] = document.createElement('div')}
top_r[1].style.cssText = 'margin:0px 5px;height:1px' + bgcolor1 ;
top_r[2].style.cssText = 'margin:0px 3px;height:1px' + border2 + bgcolor2;
top_r[3].style.cssText = 'margin:0px 2px;height:1px' + border1 + bgcolor2;
top_r[4].style.cssText = 'margin:0px 1px;height:2px' + border1 + bgcolor2;
for (i=1; i < 5 ;i++ ) {
if (mode!='bottom') { top.appendChild(top_r[i]);temp.appendChild(top); }
bottom_r[i] = top_r[i].cloneNode(true);
}
temp.appendChild(box);
box.style.cssText = border1 + bgcolor2;
temp.appendChild(bottom);
if (mode!='top') {
for (i=4; i > 0 ;i-- ) {
bottom.appendChild(bottom_r[i]);
}
}
elm.parentNode.replaceChild(temp, elm);
}
</script>
<p>
<a href="#" onclick="round(document.getElementById('test'),'#f0f0f0','#c0c0c0')">배경+테두리</a> <br />
<a href="#" onclick="round(document.getElementById('test'),'#eeeeee')">배경만</a> <br />
<a href="javascript:window.location.reload()">원상태로</a> <br />
</p>
</body>
</html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>이미지 없이 라운딩 박스 + 보더 표현하기!</title>
<style>
* {font-size:12px;}
#test {padding:3px;}
</style>
</head>
<body>
<div id='test'>이미지 없이 라운딩 박스 + 보더 표현하기!</div>
<script>
function round(elm, bgcolor, border, mode) {
var top = document.createElement('div'); top.style.cssText = 'height:5px';
var bottom = document.createElement('div');bottom.style.cssText = 'height:5px';
var temp = document.createElement('div'); temp.setAttribute('id', 'template');
var border2 = (border) ? ";border-left:2px solid "+border+";border-right:2px solid "+border : "";
var border1 = (border) ? ";border-left:1px solid "+border+";border-right:1px solid "+border : "";
var bgcolor2 = (bgcolor) ? ";background:"+bgcolor : "";
var bgcolor1 = (border) ? ";background:" + border : (bgcolor) ? ";background:" + bgcolor : "";
var top_r = new Array(), bottom_r =new Array;
var box = elm.cloneNode(true)
for (i=1; i < 5 ;i++ )
{ top_r[i] = document.createElement('div')}
top_r[1].style.cssText = 'margin:0px 5px;height:1px' + bgcolor1 ;
top_r[2].style.cssText = 'margin:0px 3px;height:1px' + border2 + bgcolor2;
top_r[3].style.cssText = 'margin:0px 2px;height:1px' + border1 + bgcolor2;
top_r[4].style.cssText = 'margin:0px 1px;height:2px' + border1 + bgcolor2;
for (i=1; i < 5 ;i++ ) {
if (mode!='bottom') { top.appendChild(top_r[i]);temp.appendChild(top); }
bottom_r[i] = top_r[i].cloneNode(true);
}
temp.appendChild(box);
box.style.cssText = border1 + bgcolor2;
temp.appendChild(bottom);
if (mode!='top') {
for (i=4; i > 0 ;i-- ) {
bottom.appendChild(bottom_r[i]);
}
}
elm.parentNode.replaceChild(temp, elm);
}
</script>
<p>
<a href="#" onclick="round(document.getElementById('test'),'#f0f0f0','#c0c0c0')">배경+테두리</a> <br />
<a href="#" onclick="round(document.getElementById('test'),'#eeeeee')">배경만</a> <br />
<a href="javascript:window.location.reload()">원상태로</a> <br />
</p>
</body>
</html>
[이 게시물은 관리자님에 의해 2011-10-31 17:16:08 PHP & HTML에서 이동 됨]
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 8030 | 9년 전 | 356 | ||
| 8029 | 9년 전 | 292 | ||
| 8028 | 9년 전 | 255 | ||
| 8027 | 9년 전 | 268 | ||
| 8026 | 9년 전 | 320 | ||
| 8025 | 9년 전 | 371 | ||
| 8024 | 9년 전 | 336 | ||
| 8023 | 9년 전 | 383 | ||
| 8022 | 9년 전 | 311 | ||
| 8021 | 9년 전 | 321 | ||
| 8020 | 9년 전 | 311 | ||
| 8019 | 9년 전 | 334 | ||
| 8018 | 9년 전 | 440 | ||
| 8017 | 9년 전 | 532 | ||
| 8016 | 9년 전 | 320 | ||
| 8015 | 9년 전 | 382 | ||
| 8014 | 9년 전 | 317 | ||
| 8013 | 9년 전 | 229 | ||
| 8012 | 9년 전 | 238 | ||
| 8011 | 9년 전 | 438 | ||
| 8010 | 9년 전 | 292 | ||
| 8009 | 9년 전 | 275 | ||
| 8008 | 9년 전 | 279 | ||
| 8007 | 9년 전 | 421 | ||
| 8006 | 9년 전 | 457 | ||
| 8005 |
|
9년 전 | 960 | |
| 8004 | 9년 전 | 345 | ||
| 8003 | 9년 전 | 413 | ||
| 8002 | 9년 전 | 320 | ||
| 8001 |
|
9년 전 | 663 | |
| 8000 | 9년 전 | 409 | ||
| 7999 | 9년 전 | 367 | ||
| 7998 | 9년 전 | 419 | ||
| 7997 | 9년 전 | 304 | ||
| 7996 | 9년 전 | 530 | ||
| 7995 | 9년 전 | 448 | ||
| 7994 | 9년 전 | 317 | ||
| 7993 | 9년 전 | 378 | ||
| 7992 | 9년 전 | 502 | ||
| 7991 | 9년 전 | 244 | ||
| 7990 | 9년 전 | 266 | ||
| 7989 | 9년 전 | 295 | ||
| 7988 | 9년 전 | 720 | ||
| 7987 | 9년 전 | 415 | ||
| 7986 | 9년 전 | 406 | ||
| 7985 | 9년 전 | 504 | ||
| 7984 | 9년 전 | 425 | ||
| 7983 | 9년 전 | 652 | ||
| 7982 | 9년 전 | 505 | ||
| 7981 | 9년 전 | 459 | ||
| 7980 | 9년 전 | 485 | ||
| 7979 | 9년 전 | 455 | ||
| 7978 | 9년 전 | 438 | ||
| 7977 | 9년 전 | 377 | ||
| 7976 | 9년 전 | 844 | ||
| 7975 | 9년 전 | 355 | ||
| 7974 | 9년 전 | 385 | ||
| 7973 | 9년 전 | 587 | ||
| 7972 | 9년 전 | 373 | ||
| 7971 | 9년 전 | 451 | ||
| 7970 | 9년 전 | 287 | ||
| 7969 | 9년 전 | 535 | ||
| 7968 | 9년 전 | 376 | ||
| 7967 | 9년 전 | 360 | ||
| 7966 | 9년 전 | 363 | ||
| 7965 |
|
9년 전 | 1007 | |
| 7964 | 9년 전 | 395 | ||
| 7963 | 9년 전 | 385 | ||
| 7962 | 9년 전 | 364 | ||
| 7961 |
전갈자리남자
|
9년 전 | 502 | |
| 7960 | 9년 전 | 955 | ||
| 7959 | 9년 전 | 546 | ||
| 7958 | 9년 전 | 401 | ||
| 7957 | 9년 전 | 361 | ||
| 7956 | 9년 전 | 365 | ||
| 7955 | 9년 전 | 440 | ||
| 7954 | 9년 전 | 366 | ||
| 7953 | 9년 전 | 420 | ||
| 7952 | 9년 전 | 346 | ||
| 7951 | 9년 전 | 494 | ||
| 7950 | 9년 전 | 381 | ||
| 7949 | 9년 전 | 381 | ||
| 7948 | 9년 전 | 320 | ||
| 7947 | 9년 전 | 925 | ||
| 7946 | 9년 전 | 420 | ||
| 7945 | 9년 전 | 386 | ||
| 7944 | 9년 전 | 408 | ||
| 7943 | 9년 전 | 364 | ||
| 7942 | 9년 전 | 400 | ||
| 7941 | 9년 전 | 382 | ||
| 7940 | 9년 전 | 871 | ||
| 7939 | 9년 전 | 346 | ||
| 7938 | 9년 전 | 373 | ||
| 7937 | 9년 전 | 272 | ||
| 7936 | 9년 전 | 875 | ||
| 7935 | 9년 전 | 438 | ||
| 7934 | 9년 전 | 404 | ||
| 7933 | 9년 전 | 499 | ||
| 7932 | 9년 전 | 465 | ||
| 7931 | 9년 전 | 523 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기