영원한사랑

인터넷정보 +1252

https://www.kisarbl.or.kr/


화이트 도메인 신청전에
DNS의 Zone에서
SPF 를 설정해야한다.


KISA RBL이란 무엇인가?

KISA-RBL은 메일서버를 운영하는 누구나 손쉽게 효과적으로 스팸을 차단하는데 이용할 수

있도록 한국정보보호진흥원(KISA)에서 무료로 관리ㆍ운영하여 제공하는

실시간 스팸차단리스트입니다.

국내외로부터 스팸정보를 실시간으로 취합하고 이를 다양한 기준에 따라 분석한 결과,

스팸전송에 관련된 것으로 확인된 IP들을 리스트로 생성하여 1시간 단위로 제공합니다.

KISA-RBL을 이용하면 수신되는 모든 이메일의 발송IP 확인을 통해 스팸여부를 판단하여

즉각 차단하므로 메일서버 등 자원의 불필요한 소모를 방지할 수 있습니다.

$pattern ='/(src=|href=)(\'|\")?([^<>\s\'\"]*)(\'|\"|\s|)/i';

preg_match_all( $pattern, $subject, $matches );

print_r($matches[3])


$str = HTML 내용
$url = HTML의 url;

function get_link_files($url,$str){
 $url_arr = parse_url($url);
 $domain = $url_arr['scheme'].'://'.$url_arr['host'];
 if($url{strlen($url)-1}!='/'){
   $path = $domain.$url_arr['path'];
 }
 else{ $path = $url; }
 $pattern ='/(src=|href=)(\'|\")?([^<>\s\'\"]*)(\'|\"|\s|)/i';
 $subject =&$str;
 $matches = array();
 preg_match_all( $pattern, $subject, $matches );

 $r_arr = array();
 $r = $matches[3];
 $r2 = array();
 unset($matches);//삭제
 for($i =0,$m=count($r);$i<$m;$i++){ //경로 재계산
  if($r[$i]{0}=='/'){
   $r2[] = $domain.$r[$i];
  }else if($r[$i]{1}=='/'){
   $r2[] = $path.$r[$i];
  }else if(strpos($r[$i],'http://')===0){
   $r2[] = $r[$i];
  }
 }

 print_r($r2);
 
}

/*-------------------------------------------------------------------------------/
만든이 : mins
mins01@lycos.co.kr
http://mins01.woobi.co.kr

/--------------------------------------------------------------------------------/
사용법
파일 첨부후
해당 input 개체에
onKeyDown="nr_phone(this);" onKeyPress="nr_phone(this);" onKeyUp="nr_phone(this);"
위 이벤트를 등록.

<!-- 노멀라이즈 함수, 숫자,영어,주민번,사업자번호 체크.-->
<script language='JavaScript' src='<?=$board_skin?>/nr_func.js'></script>

<input type=text name='name' size=20 maxlength=20 onKeyDown="nr_phone(this);" onKeyPress="nr_phone(this);" onKeyUp="nr_phone(this);">

/-------------------------------------------------------------------------------*/

/*-------------------------------------------------------------------------------*/
/*
한글의 경우 초성을 포함하지 않으면
onKey~~~ 로 인해서 한글을 적을 수 없습니다.
onKey~~~ 이벤트는 빼주시고
onchange 와 onblur!! 등 이벤트에 등록해주세요.
*/

// 한글만 입력받기 (초성체 무시)
// 나머지 글자 무시
function nr_han(this_s,type){
/*
type
-> 'c' : 초성 포함
-> 's' : 초성 포함 + 공백 포함
-> '' : 초성, 공백 무시
*/
temp_value = this_s.value.toString();
regexp = '';
repexp = '';
switch(type){
case 'c': regexp = /[^ㄱ-ㅎ가-힣]/g;break;
case 's': regexp = /[^ㄱ-ㅎ가-힣s]/g;break;
case '': regexp = /[^가-힣]/g; break;
default : regexp = /[^ㄱ-ㅎ가-힣s]/g;
}
if(regexp.test(temp_value))
{
temp_value = temp_value.replace(regexp,repexp);
this_s.value = temp_value;
}
}

/*-------------------------------------------------------------------------------*/

// 한글만 입력받기 (초성체 포함)
// 나머지 글자 무시
function nr_han_cho(this_s){
nr_han(this_s,'c');
}

/*-------------------------------------------------------------------------------*/

// 한글만 입력받기 (초성체 포함, 공백 포함)
// 나머지 글자 무시
function nr_han_cho_space(this_s){
nr_han(this_s,'s');
}


/*-------------------------------------------------------------------------------*/
function nr_numeng(this_s){
temp_value = this_s.value.toString();
regexp = /[^0-0a-zA-Z]/g;
repexp = '';
temp_value = temp_value.replace(regexp,repexp);
this_s.value = temp_value;
}

/*-------------------------------------------------------------------------------*/
// 나머지 글자 무시
function nr_num(this_s,type){
/*
type
-> 'int' : 양의 정수
-> 'float' : 양의 실수
-> '-int' : 음의 정수 포함
-> '-int' : 음의 실수 포함
*/
temp_value = this_s.value.toString();
regexp = /[^-.0-9]/g;
repexp = '';
temp_value = temp_value.replace(regexp,repexp);
regexp = '';
repexp = '';
switch(type){
case 'int': regexp = /[^0-9]/g; break;
case 'float':regexp = /^(-?)([0-9]*)(.?)([^0-9]*)([0-9]*)([^0-9]*)/; break;
case '-int': regexp = /^(-?)([0-9]*)([^0-9]*)([0-9]*)([^0-9]*)/;break;
case '-float':regexp = /^(-?)([0-9]*)(.?)([^0-9]*)([0-9]*)([^0-9]*)/; break;
default : regexp = /[^0-9]/g; break;
}
switch(type){
case 'int':repexp = '';break;
case 'float':repexp = '$2$3$5';break;
case '-int': repexp = '$1$2$4';break;
case '-float':repexp = '$1$2$3$5'; break;
default : regexp = /[^0-9]/g; break;
}
temp_value = temp_value.replace(regexp,repexp);
this_s.value = temp_value;
}
// 양의 정수만 입력받기
function nr_num_int(this_s){
nr_num(this_s,'int');
}
// 양의 실수만 입력받기
function nr_num_float(this_s){
nr_num(this_s,'float');
}

/*-------------------------------------------------------------------------------*/

// 영어만 입력받기 (대소문자)
// 나머지 글자 무시
function nr_eng(this_s,type){
temp_value = this_s.value.toString();
regexp = '';
repexp = '';
switch(type){
case 'small':regexp = /[^a-z]/g;break;
case 'big':regexp = /[^A-Z]/g;break;
case 'all':regexp = /[^a-z]/i;break;
default :regexp = /[^a-z]/i;break;
}
temp_value = temp_value.replace(regexp,repexp);
this_s.value = temp_value;
}

// 영어만 입력받기 (소문자)
// 나머지 글자 무시
function nr_eng_small(this_s){
nr_eng(this_s,'small');
}

// 영어만 입력받기 (대문자)
// 나머지 글자 무시
function nr_eng_big(this_s){
nr_eng(this_s,'big');
}
// 전화번호 규격에 맞게 DDD-MM~M-XXXX
// 나머지 글자 무시
function nr_phone(this_s)
{
temp_value = this_s.value.toString();
temp_value = temp_value.replace(/[^0-9]/g,'');
temp_value = temp_value.replace(/(0(?:2|[0-9]{2}))([0-9]+)([0-9]{4}$)/,"$1-$2-$3");
this_s.value = temp_value;
}

/*-------------------------------------------------------------------------------*/


// 주민등록 번호 규격에 맞게 123456-1234567 //검증하지 않음.
// 나머지 글자 무시
function nr_jumin(this_s)
{
temp_value = this_s.value.toString();
temp_value = temp_value.replace(/[^0-9]/g,'');
temp_value = temp_value.substr(0,13);
temp_value = temp_value.replace(/([0-9]{6})([0-9]{7}$)/,"$1-$2");
this_s.value = temp_value;
}



/*-------------------------------------------------------------------------------*/

// 사업자 등록 번호 규격에 맞게 123-12-12345 //검증하지 않음.
// 나머지 글자 무시
function nr_company_num(this_s)
{
temp_value = this_s.value.toString();
temp_value = temp_value.replace(/[^0-9]/g,'');
temp_value = temp_value.substr(0,10);
temp_value = temp_value.replace(/([0-9]{3})([0-9]{2})([0-9]{5}$)/,"$1-$2-$3");
this_s.value = temp_value;
}

http://oxtag.com/html/ex/js_event_manual.html


IE/FF(Gecko,W3C) 이벤트 설명

IE와 FF에서 이밴트를 불러 사용하는 방법(예제)
브라우저 IE FF IE&FF
input 개체 <input onclick="fn()"> <input onclick="fn(event)"> <input onclick="fn(event)">
함수

function fn(){
alert(event.type);
}

function fn(e){
alert(e.type);
}
function fn(e){
var evt = window.event || e;
alert(evt.type);
}

설명
(예제 값은 <input> 에서 onclick 이벤트로 발생시킴)

설명 순서는 내 마음대로, 관계있는 것 끼리 엮음.
해석하기 어렵거나 이해하기 어려운건 원문과 같이 나타냈습니다.
IE value FF value 특징 설명
기능키
altKey FALSE altKey FALSE 읽기전용 키보드 ALT키가 눌러져있는가?
altLeft FALSE     읽기전용 왼쪽 ALT키가 눌러져있는가?
ctrlKey FALSE ctrlKey FALSE 읽기전용 키보드 Ctrl 키가 눌러져있는기?
ctrlLeft FALSE     읽기전용 키보드 왼쪽 Ctrl키가 눌러져있는가?
shiftKey FALSE shiftKey FALSE 읽기전용 Shift 키가 눌러져있는가?
shiftLeft FALSE     읽기전용 왼쪽 Shift 키가 눌러져있는가?
키보드/마우스
keyCode 0     읽기전용 현재 발생된 키코드(키보드에서 눌려진 키의 10진수 값)
    which 1 읽기전용 현재 발생된 키코드(키보드에서 눌려진 키의 10진수 값) & 마우스 동작
1:왼쪽마우스,2:가운데마우스,3:왼쪽마우스, 나머지값:키의 ASCII 값
    detail 1 읽기전용 click, dblclick, mousedown, or mouseup 이벤트에서만 발생, 마우스가 클릭 수를 표시, dblclick는 항상 2
  isChar FALSE 읽기전용 Returns a boolean indicating whether the event produced a key character or not.
입력된 값이 글자인지 체크
button 0 button 0 읽기전용 현재 눌려진 마우스 버튼(IE)
onmousedown, onmouseup, onmousemove 이벤트에서만 발생
(onClick에서는 0)
  IE
0 Default. No button is pressed.
1 Left button is pressed.
2 Right button is pressed.
3 Left and right buttons are both pressed.
4 Middle button is pressed.
5 Left and middle buttons both are pressed.
6 Right and middle buttons are both pressed.
7 All three buttons are pressed.

  FF  
0 for standard 'click', usually left button  
1 for middle button, usually wheel-click
 
2 for right button, usually right-click  
wheelDelta 0     읽기전용 마우스 휠의 이동량
type click type click 읽기전용 현재 발생된 이벤트 타입
    timeStamp 4108593 읽기전용 이밴트가 생성된 시간(유닉스타임)
    view [object Window] 읽기전용 The view attribute identifies the AbstractView from which the event was generated.
    metaKey FALSE   Used to indicate whether the 'meta' key was depressed during the firing of the event. On some platforms this key may map to an alternative key name.
repeat FALSE       Retrieves whether the onkeydown event is being repeated.
onkeydown이벤트에서 키입력의 반복을 허용하는가?
X/Y좌표
clientX 552 clientX 25 읽기전용 이벤트가 발생한 X위치(현재 페이지 기준)
clientY 188 clientY 392 읽기전용 이벤트가 발생한 Y위치(현재 페이지 기준)
offsetX 537     읽기전용 이벤트가 발생된 대상에서의 이벤트 발생 위치 X값
offsetY -107     읽기전용 이벤트가 발생된 대상에서의 이벤트 발생 위치 Y값
screenX 754     읽기전용 window.screen 에서 상대적 위치 X값
screenY 285     읽기전용 window.screen 에서 상대적 위치 Y값
x 552     읽기전용 현재 보이는 페이지에서의 상대적 위치 X값(스크롤 값을 계산되지 않는다)
y 188     읽기전용 현재 보이는 페이지에서의 상대적 위치 Y값(스크롤 값을 계산되지 않는다)
    layerX 26 읽기전용 Returns the horizontal coordinate of the event relative to the current layer.
레이어에서의 상대적 위치 X값
    layerY 393 읽기전용 Returns the vertical coordinate of the event relative to the current layer.
레이어에서의 상대적 위치 Y값
    pageX 25 읽기전용 Returns the horizontal coordinate of the event relative to the page.
    pageY 392 읽기전용 Returns the vertical coorindate of the event relative to the page.
이밴트 대상
fromElement null     읽기전용 이벤트가 발생된 개체(이밴트가 진행중일 때)
srcElement [object] currentTarget [object HTMLInputElement] 읽기전용 현재 이벤트가 발생된 개체
  eventPhase 2 읽기전용 Indicates which phase of the event flow is currently being evaluated.
  explicitOriginalTarget [object HTMLInputElement] 읽기전용 The explicit original target of the event. (Mozilla-specific)
toElement null     읽기전용 Sets or retrieves a reference to the object toward which the user is moving the mouse pointer.
사용자에 의한 마우스 이동으로 지못된 개체를 참조
    originalTarget [object HTMLInputElement] 읽기전용 The original target of the event, before any retargetings (Mozilla-specific).
    relatedTarget null 읽기전용 Identifies a secondary target for the event.
이벤트에 영향을 받은 2번째 대상
    target [object HTMLInputElement] 읽기전용 Returns a reference to the target to which the event was originally dispatched.
이밴트가 발생된 대상을 참조
propertyName         이벤트의 발생으로 변경되는 프로퍼티의 이름
(ex> textbox에 키가 입력되면 value 값을 가지게된다)
이밴트버블
cancelBubble FALSE cancelBubble FALSE   이벤트가 다음 이벤트처리자에 연결되는지 처리
(false:허용됨(기본값)/true:허용안됨(현재에서 이벤트는 정지))
    bubbles TRUE 읽기전용 이벤트가 버블링 되는지 표시
    cancelable TRUE 읽기전용 이벤트를 멈출 수 있는가를 표시
returnValue undefined       Sets or retrieves the return value from the event.
이벤트가 반환되는가?
true(기본) : 이 이벤트는 다른 곳에 반환된다.(이벤트가 계속)
false : 이 이벤트는 이곳에서 끝난다(이벤트가 취소)
DB관련
bookmarks null       Returns a collection of Microsoft ActiveX Data Objects (ADO) bookmarks tied to the rows affected by the current event.
(개체에 연결된 DB내역(rows)참조)
boundElements [object]       Returns a collection of all elements on the page bound to a data set.
(개체에 연결된 DB 데이터(Data Set) 참조)
dataFld       읽기전용 Sets or retrieves the data column affected by the oncellchange event.
oncellchange 이벤트로 영형을 받은 데이터 Column
dataTransfer null     Object Provides access to predefined clipboard formats for use in drag-and-drop operations.
드래그앤드롭의 동작은 제어
qualifier       Sets or retrieves the name of the data member provided by a data source object(DSO).
reason 0       Sets or retrieves the result of the data transfer for a data source object(DSO).
recordset null       Sets or retrieves from a data source object a reference to the default record set.
         
기타
  isTrusted TRUE    
    rangeOffset 0    
    rangeParent [object Text]    
nextPage     IE5.5+ nextPage 속성값은 인쇄나 인쇄 템플릿에서 다음 페이지의 위치를 나타내는 문자열이다.
contentOverflow FALSE     읽기전용 Retrieves a value that indicates whether the document contains additional content after processing the current LayoutRect object.
srcFilter null     읽기전용

onfilterchange 이벤트를 발생시킨 Filter

srcUrn       읽기전용 Retrieves the Uniform Resource Name (URN) of the behavior that fired the event.
이벤트를 발생시킨 behavior 의 주소(URN)
behaviorCookie 0       일반 HTML에 사용되지 않는다.
behaviorPart 0       일반 HTML에 사용되지 않는다.
           
FF이벤트의 메소드
    stopPropagation function stopPropagation() {[native code]}   Stops the propagation of events further along in the DOM.
이밴트의 번짐을 취소시킨다.
    getPreventDefault function getPreventDefault() {[native code]}    
    initEvent

function initEvent(){[native code]}

  Initializes the value of an Event created through the DocumentEvent interface.
이밴트가 만들어질 때 초기화 하는 메소드
    initMouseEvent function initMouseEvent() {[native code]}   Initializes a mouse event once it's been created
마우스 이밴트가 만들어 질 때 초기화 하는 메소드
    initUIEvent function initUIEvent() {[native code]}  

Initializes a UI event once it's been created
UI이벤트가 생성될 초기화 하는 메소드

    preventBubble function preventBubble() {[native code]}   Prevents the event from bubbling. This method is deprecated in favor of standard stopPropagation and is removed in Gecko
    preventCapture function preventCapture() {[native code]}   This method is deprecated in favor of standard stopPropagation and is removed in Gecko 1.9.
    preventDefault function preventDefault() {[native code]}   Cancels the event (if it is cancelable).
이밴트를 취소한다.

참고 사이트
http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/reference/objects/obj_event.asp
http://developer.mozilla.org/en/docs/DOM:event
http://koxo.com/
 
-만든이: 공대여자, mins01
http://mins01.zerock.net
mins01(at)lycos.co.kr

js_event_anti.js 파일은 하단 첨부파일 다운로드 받으세요.

<script src='js_event_anti.js' language='javascript' type='text/javascript'></script>
<script> js_event_anti(window.document);</script>

/*========================================
js_event_anti.js
오른쪽마우스버튼,키보드 입력등 방지

this_s : 원하는 대상(페이지 전체는 window.document)
e : event 객체

ex1>
js_event_anti([개체]);//페이지 복사방지(오른쪽마우스,키보드, 팝업창이라면 완벽!)
(개체을 지정하지 않으면 window.document가 대상, 페이지 복사방지(오른쪽마우스,키보드, 팝업창이라면 완벽!)
ex2>
[개체].이벤트 = js_event_anti_stop_event; //개체의 해당 이벤트동작은 무시된다


mins01,mins,공대여자
MSN,NateOn : mins01(at)lycos.co.kr
2007-02-01
"공대여자는 예쁘다."를 나타내야만 쓸 수 있습니다.
//========================================*/
//==== 오른쪽 마우스 버튼 막기
function js_event_anti_right(e) {
evt = e || event;
    try{
  if (document.all){
   if(evt.button == 2 || evt.button == 3) {    
alert!!('Don\'t! Mouse Right Click.');  
    js_event_anti_stop_event(evt);
    return false;     }
  }else {
   if(evt.which == 3 || evt.which == 2) {  
alert!!('Don\'t! Mouse Right Click.');  
    js_event_anti_stop_event(evt);
    return false; }
  }
    }catch(ex){
  return false;
    }
}
//==== 키보드 입력 막기
function js_event_anti_processKey(e){
evt = e || event;
alert!!('Don\'t! Key Input.');
  try{
  js_event_anti_stop_event(evt);
  return false;
    }catch(ex){
  return false;
    }
}
//==== 이벤트 동작 무시!
function js_event_anti_stop_event(evt){
if(window.event){
window.event.keyCode = 0;
window.event.cancelBubble = true;
window.event.returnValue = true;    
}else{
evt.stopPropagation();
evt.preventDefault();
evt.initEvent;
}
return false;
}
//==== 기본안티 이벤트 등록(오른쪽마우스,드래그,키입력)
function js_event_anti(this_s){
//문제점 : FF에서는 드래그 이벤트를 제어할 수 없다.// 스타일로 처리
if(!this_s){this_s = window.document;}
if(document.attachEvent){
this_s.attachEvent("onkeydown", js_event_anti_processKey );
this_s.attachEvent("onmousedown", js_event_anti_right );
this_s.attachEvent("onselectstart", js_event_anti_stop_event );
this_s.attachEvent("ondragstart", js_event_anti_stop_event );
this_s.attachEvent("oncontextmenu", js_event_anti_stop_event );
}
else{
window.captureEvents(Event.MOUSEDOWN);
window.captureEvents(Event.ONKEYDOWN);
window.captureEvents(Event.ONCONTEXTMENU);
this_s.addEventListener("keydown", js_event_anti_processKey , false);
this_s.addEventListener("mousedown", js_event_anti_right , false);
// this_s.addEventListener("dragstart", js_event_anti_stop_event , false);  //FF에서 지원되지 않는다.
// this_s.addEventListener("selectstart", js_event_anti_stop_event , false);   //FF에서 지원되지 않는다.
//대신사용 스타일 적용
// window.document.body.style.MozUserFocus='ignore';
window.document.body.style.MozUserInput='disabled';
window.document.body.style.MozUserSelect='none';
this_s.addEventListener("contextmenu", js_event_anti_stop_event , false);

}
}

-----------------------------------------------------------------------------

그냥 간단한거..

소스보기 금지태그 1

<body oncontextmenu="return false" onselectstart="return false" ondragstart="return false" onkeydown="return false">

소스 설명 :
위의 소스는 body 태그에서 사용합니다.
html 문서에 있던 body 태그에 oncontextmenu="return false" onselectstart="return false" ondragstart="return false"
부분을 붙여넣기 하기만 하면 됩니다. 필요한 것만 넣어서 사용해도 되고 모두 사용해도 됩니다.
oncontextmenu="return false"    마우스 오른쪽 버튼을 눌렀을 때 바로가기 메뉴가 나타나지 않도록 합니다.
onselectstart="return false"    마우스로 선택을 하지 못하게 합니다.
ondragstart="return false"      마우스로 드래그를 하지 못하게 합니다.
onkeydown="return false"        키보드 제어입니다. (글이 안써지죠.)

판매상품 갤러리 입니다.


미리보기


옥션 : http://avgagunara.com/img/file/auction.php 

         - 클릭 후 상품 아무거나 다시 클릭해서 스크롤바를 내려보세요.

인터파크 : http://avgagunara.com/img/file/interparkMs.php

지마켓 : http://avgagunara.com/img/file/gmarket.php

GSe스토어 : http://avgagunara.com/img/file/gsestore.php

엠플 : http://avgagunara.com/img/file/mple.php

 

  ○ 옥션 스토어 물품 리스팅은 스토어를 운영하는 사업자 판매자만 사용하실 수 있으며,
      스토어 기본 설정을 읽어 들여서 상품을 홍보하는 방식입니다. 즉, 하나의 상품을
      판매시 스토어 전체 상품이 노출되므로 확실한 마케팅전략이라 할 수 있습니다.
      또한, 상품을 보면서 옥션 자체 페이지 이동 없이 물품리스팅 페이지만 이동하기
      때문에 구매자는 불필요한 페이지 이동없이 판매자의 전 상품을 볼 수 있고,
      판매자는 하나의 상품으로 스토어 전 상품 홍보할 수 있는 효과적인 마케팅방법입니다.

  ○ 리스팅에 자체 검색폼이 있어서 고객과 통화시 다른 상품을 검색 유도하여 판매를 극대화 할 수 있습니다. (같은 상품을 다른 판매자도 판매를 하는 경우에 좋겠죠.)


폰트 사이트

인터넷정보2007. 10. 10. 11:31

<SCRIPT lanugage="JavaScript">
var name = "layer"; //레이어의 이름.
var space = 1; //반투명 처리 간격.
var time1 = 0.1; //반투명도를 한간격 변경할 시간입니다. (초 단위)
var time2 = 2; //교차가 완료된 후 대기할 시간입니다. (초 단위)


var tran=1; //반투명도를 계산할 변수. (수정하는 것 아님)
var tranlr=1; //레이어1의 번호. (수정하는 것 아님)
function transparent() {
if(!document.getElementById(name+"1")) return; //레이어1이 없다면 그냥 함수를 끝낸다.
var tranlr2=tranlr+1; //교차할 그 다음의 레이어 (레이어2)
if(!document.getElementById(name+tranlr2)) tranlr2=1; //레이어2가 없다면 처음레이어로 돌아간다.
var preview = document.getElementById(name+tranlr);
var preview2 = document.getElementById(name+tranlr2);

if(preview2.style.opacity!="1") { //레이어2가 아직 반투명할 경우
preview2.style.display="block";

/* 여기부터는 Firefox의 방식 - style의 opacity가 1이면 불투명, 0이면 투명 */
var a=Math.round((tran - space*0.1)*10)/10; //레이어1의 변경될 투명도
var b=Math.round(Math.abs(a-1)*10)/10; //레이어2의 변경될 투명도. a에서 1을 뺀다음, 절대값.
preview.style.opacity=a;
preview2.style.opacity=b;

/* 여기부터는 IE의 방식 - filter:alpha가 opacity=100이면 불투명, 0이면 투명 */
a=tran*100 - space*10; //레이어1의 변경될 투명도
b=Math.abs(a - 100); //레이어2의 변경될 투명도. a에서 100을 뺀다음, 절대값.
preview.style.filter="alpha(opacity="+a+")";
preview2.style.filter="alpha(opacity="+b+")";

tran=tran - space*0.1;
setTimeout("transparent();", time1*1000);
} else { //레이어2가 완전히 보일 경우
preview.style.display="none";
tranlr++;
if(!document.getElementById(name+tranlr)) tranlr=1;
tran=1;
setTimeout("transparent();", time2*1000);
}
}
</SCRIPT>


</P> <DIV id=layer1 style="DISPLAY: block; POSITION: absolute">안녕하세요!</DIV>
<DIV id=layer2 style="DISPLAY: none; POSITION: absolute">반가워요~</DIV>
<DIV id=layer3 style="DISPLAY: none; POSITION: absolute">사랑합니다!</DIV>
<DIV id=layer4 style="DISPLAY: none; POSITION: absolute">알라뷰~♡</DIV>

<SCRIPT language=JavaScript>
//레이어 교차 함수 시작!
document.getElementById(name+"1").style.opacity=1;
document.getElementById(name+"1").style.filter="alpha(opacity=100)";
setTimeout("transparent();",time2*1000);
</SCRIPT>

<!--StartFragment--><style>
.bin {font-size:1px; font-family:verdana; line-height:1%;}
.fixed {table-layout:fixed;}
</style>

<pre class="scripts">

function top_round(w,c) {
var top_html;
top_html="<table cellpadding=0 cellspacing=0 border=0 style='width:"+w+";margin:0px;padding:0px;' class=fixed>";
top_html+="<tr style='height: 1px;'><td rowspan=4 style='width:1px;' class=bin></td><td rowspan=3 style='width:1px;' class=bin>&nbsp;</td>";
top_html+="<td rowspan=2 style='width:1px;' class=bin>&nbsp;</td><td style='width:1px;' class=bin>&nbsp;</td><td bgcolor="+c+" class=bin>&nbsp;</td>";
top_html+="<td style='width:2px;' class=bin></td><td rowspan=2 style='width:1px;' class=bin>&nbsp;</td><td rowspan=3 style='width:1px;' class=bin>&nbsp;</td>";
top_html+="<td rowspan=4 style='width:1px;' class=bin>&nbsp;</td></tr><tr style='height:1px;'><td bgcolor="+c+" class=bin>&nbsp;</td>";
top_html+="<td bgcolor="+c+" class=bin>&nbsp;</td><td bgcolor="+c+" class=bin>&nbsp;</td></tr>";
top_html+="<tr style='height: 1px;'><td bgcolor="+c+" class=bin>&nbsp;</td><td colspan=3 bgcolor="+c+" class=bin>&nbsp;</td>";
top_html+="<td bgcolor="+c+" class=bin>&nbsp;</td></tr><tr style='height:2px;'><td bgcolor="+c+" class=bin>&nbsp;</td>";
top_html+="<td colspan=5 bgcolor="+c+" class=bin>&nbsp;</td><td bgcolor="+c+" class=bin>&nbsp;</td></tr></table>";
document.write(top_html);
}

function bottom_round(w,c) {
var bottom_html;
bottom_html="<table cellpadding=0 cellspacing=0 border=0 style='width:"+w+";margin:0px;padding:0px;' class=fixed>";
bottom_html+="<tr style='height: 2px;'><td rowspan=4 width=1 class=bin>&nbsp;</td><td width=1 bgcolor="+c+" class=bin>&nbsp;</td><td style='width:1px;' bgcolor="+c+" class=bin>&nbsp;</td>";
bottom_html+="<td style='width:1px;' bgcolor="+c+" class=bin>&nbsp;</td><td bgcolor="+c+" class=bin>&nbsp;</td><td width=2 bgcolor="+c+" class=bin>&nbsp;</td>";
bottom_html+="<td style='width:1px;' bgcolor="+c+" class=bin>&nbsp;</td><td style='width:1px;' bgcolor="+c+" class=bin>&nbsp;</td><td rowspan=4 style='width:1px;' class=bin>&nbsp;</td></tr>";
bottom_html+="<tr style='height: 1px;'><td rowspan=3 class=bin>&nbsp;</td><td bgcolor="+c+" class=bin>&nbsp;</td><td colspan=3 bgcolor="+c+" class=bin>&nbsp;</td>";
bottom_html+="<td bgcolor="+c+" class=bin>&nbsp;</td><td rowspan=3 class=bin>&nbsp;</td></tr><tr style='height:1px;'><td rowspan=2 class=bin>&nbsp;</td>";
bottom_html+="<td bgcolor="+c+" class=bin>&nbsp;</td><td bgcolor="+c+" class=bin>&nbsp;</td><td bgcolor="+c+" class=bin>&nbsp;</td><td rowspan=2 class=bin>&nbsp;</td></tr>";
bottom_html+="<tr style='height: 1px;' class=bin><td class=bin>&nbsp;</td><td bgcolor="+c+" class=bin>&nbsp;</td><td class=bin>&nbsp;</td></tr></table>";
document.write(bottom_html);
}
</pre>

<pre class="scripts">top_round("60%","#FFCC66");</pre>
<table border=0 width=60% bgcolor=#FFCC66 cellpadding=0 cellspacing=0>
<tr><td>둥글 둥글 -_-</td></tr></table>
<pre class="scripts">bottom_round("60%","#FFCC66");</pre>

<!--StartFragment--><html> 
    <head> 
        <title>심플 라이트박스 효과</title> 
        <meta&#033&#033 http-equiv="content-type" content="text/html; charset=euc-kr"> 
        <style type="text/css"> 
            html { width:100%; height:100%; }  
            body { width:100%; height:100%; margin: 0px; padding: 0px; font-size:9pt; }  
            .SLB_center { cursor:pointer; visibility:hidden; border: solid 4px #000000; }  
            .SLB_close { cursor: pointer; display:none; font-family: verdana,tahoma; font-size: 9pt; background-color:#000000; color: #ffffff; padding-bottom: 4px; }  
            .SLB_caption { cursor: pointer; display:none; font-family: verdana,tahoma; font-size: 9pt; background-color:#000000; color: #ffffff; padding-bottom: 4px; }  
            #SLB_loading { cursor: pointer; display:none; z-index: 99998; position:absolute; font-family: verdana,tahoma; font-size: 9pt; background-color:#000000; color: #ffffff; padding: 3px 0px 4px 0px; border: solid 2px #cfcfcf; }  
        </style> 
        <pre class="scripts" language="javascript" type="text/javascript"> 
            // 심플 라이트박스 효과 by 알릭 (2007/03/01)  
            // http://www.alik.info
var SLB_cnt = 0;
            function SLB_show(url, type)  
            {  
                var a = document.getElementById('SLB_film');  
                var b = document.getElementById('SLB_content');  
                var c = document.getElementById('SLB_loading');  
                if(url) {  
                    a.style.top = 0;  
                    a.style.left = 0;  
                    a.style.display = "";  
                    a.style.height = document.body.scrollHeight + 'px';  
                    document.getElementById('SLB_loading').style.display = "block";  
                    SLB_setCenter(c,true);  
                    if(type == 'image') {  
                        b.innerHTML="<img src=" + url + " class='SLB_center' onload='SLB_setCenter(this);' />";  
                        if(arguments[2]) a.onclick = function () { SLB_show() };  
                        if(arguments[3]) b.innerHTML += "<div class='SLB_caption'>"+ arguments[3] +"</div>";;  
                    } else if (type == 'iframe') {  
                        b.innerHTML="<iframe src=" + url + " width="+ arguments[2] +" height="+ arguments[3] +" class='SLB_center' marginwidth='0' marginheight='0' frameborder='0' vspace='0' hspace='0' onload='SLB_setCenter(this);' /></iframe>";     
                        if(arguments[4]) {  
                            b.innerHTML += "<div class='SLB_close' onclick='SLB_show();' title='닫기'>close</div>";  
                        }  
                        b.onclick = ''; b.firstChild.style.cursor = 'default';   
                    } else if (type='html'){  
                        b.innerHTML = url;  
                        SLB_setCenter(b.firstChild);  
                        if(arguments[2]) b.onclick = '';   
                    }
hideSelect();
                } else {  
                    a.onclick = '';  
                    a.style.display = "none";  
                    b.innerHTML = "";  
                    b.onclick = function () { SLB_show() };  
                    c.style.display = "none";  
showSelect();
SLB_cnt = 0;
                }  
            }  
              
            function SLB_setCenter(obj) {  
                if (obj) {  
                    var h = window.innerHeight || self.innerHeight || document.body.clientHeight;  
                    var w = window.innerWidth || self.innerWidth || document.body.clientWidth;  
                    var l = (document.body.scrollLeft + ((w-(obj.width||parseInt(obj.style.width)||obj.offsetWidth))/2));  
                    var t = (document.body.scrollTop + ((h-(obj.height||parseInt(obj.style.height)||obj.offsetHeight))/2));  
                    if((obj.width||parseInt(obj.style.width)||obj.offsetWidth) >= w) l = 0;  
                    if((obj.height||parseInt(obj.style.height)||obj.offsetHeight) >= h) t = document.body.scrollTop;  
                    document.getElementById('SLB_content').style.left = l + "px";
if(SLB_cnt == 0) {
                   document.getElementById('SLB_content').style.top = t + "px";
if(document.getElementById('SLB_content').offsetHeight >= h) {
SLB_cnt ++;
}
}
                    obj.style.visibility = 'visible';  
                    if(obj.nextSibling && (obj.nextSibling.className == 'SLB_close' || obj.nextSibling.className == 'SLB_caption')) {  
                        obj.nextSibling.style.display = 'block';
if(document.getElementById('SLB_content').offsetHeight < h) {
document.getElementById('SLB_content').style.top = parseInt(document.getElementById('SLB_content').style.top) - (obj.nextSibling.offsetHeight/2) + "px";
}
                    }  
                    if(!arguments[1]) {  
                        document.getElementById('SLB_loading').style.display = "none";
                    } else {
obj.style.left = l + "px";  
obj.style.top = t + "px";
                    }  
                }  
            }

function hideSelect() {
var windows = window.frames.length;
var selects = document.getElementsByTagName("SELECT");
for (i=0;i < selects.length ;i++ )
{
selects[i].style.visibility = "hidden";
}

if (windows > 0) {
for(i=0; i < windows; i++) {
try {
var selects = window.frames[i].document.getElementsByTagName("SELECT");
for (j=0;j<selects.length ;j++ )
{
selects[j].style.visibility = "hidden";
}
} catch (e) {}
}
}
}

function showSelect() {
var windows = window.frames.length;
var selects = document.getElementsByTagName("SELECT");
for (i=0;i < selects.length ;i++ )
{
selects[i].style.visibility = "visible";
}

if (windows > 0) {
for(i=0; i < windows; i++) {
try {
var selects = window.frames[i].document.getElementsByTagName("SELECT");
for (j=0;j<selects.length ;j++ )
{
selects[j].style.visibility = "visible";
}
} catch (e) {}
}
}
}

            var prevOnScroll = window.onscroll;  
            window.onscroll = function () {  
                if(prevOnScroll != undefined) prevOnScroll();  
                document.getElementById('SLB_film').style.height = document.body.scrollHeight + 'px';  
                document.getElementById('SLB_film').style.width = document.body.scrollWidth + 'px';  
                SLB_setCenter(document.getElementById('SLB_content').firstChild);            
            }  
            var prevOnResize = window.onresize;     
            window.onresize = function () {  
                if(prevOnResize != undefined) prevOnResize();  
                document.getElementById('SLB_film').style.height = document.body.offsetHeight + 'px';  
                document.getElementById('SLB_film').style.width = document.body.offsetWidth + 'px';  
                SLB_setCenter(document.getElementById('SLB_content').firstChild);        
            }  
        </pre> 
    </head> 
 
    <body> 

    <div id="SLB_film" style="z-index: 99997; position:absolute; display:none; width:100%; height:100%; background-color:#000000; filter:Alpha(opacity=60); opacity:0.6; -moz-opacity:0.6;"></div> 
    <div id="SLB_content" onclick="SLB_show();" align="center" style="z-index: 99999; position:absolute;"></div> 
    <div id="SLB_loading" onclick="SLB_show();" title="로딩중...클릭시 취소">&nbsp;Loading...&nbsp;</div> 
 
    <div style="margin:10px 0px 0px 20px;">

<p><select><option value=1 />셀렉트 박스</select></p>

        <a onclick="SLB_show('http://i.blog.empas.com/frozen108/28257327_365x396.jpg','image',true);" style='cursor:pointer; border-bottom:2px solid blue; line-height:2;'>이미지 띄우기</a><br /> 
        실행코드: SLB_show('http://i.blog.empas.com/frozen108/28257327_365x396.jpg','image',true);<br /> 
        설명: SLB_show('이미지주소', 'image', 반투명배경클릭시닫기?(true or false));<br /><br /> 
        <a onclick="SLB_show('http://i.blog.empas.com/frozen108/28257327_365x396.jpg','image',false, '오~이쁘당!<i>김태희 ^^</i>');" style='cursor:pointer; border-bottom:2px solid blue; line-height:2;'>이미지 띄우기 - 캡션과 함께</a><br /> 
        실행코드: SLB_show('http://i.blog.empas.com/frozen108/28257327_365x396.jpg','image',false, '오~이쁘당!&lt;i&gt;김태희 ^^&lt;/i&gt;');<br /> 
        설명: SLB_show('이미지주소', 'image', 반투명배경클릭시닫기?(true or false), '캡션내용');<br /><br /> 
        <a onclick="SLB_show('http://www.yahoo.com','iframe', 600, 400, true);" style='cursor:pointer; border-bottom:2px solid blue; line-height:2;'>아이프레임 띄우기</a><br /> 
        SLB_show('http://www.yahoo.com','iframe', 600, 400, true);<br /> 
        SLB_show('아이프래임 src', 'iframe', 가로크기, 세로크기, 아이프렘하단에 닫기버튼표시?(true or false));<br /><br /> 
        <a onclick="SLB_show('<div style=\'border:2px solid red; width:200px; height:100px; background-color:yellow\'>하하하하하<br />ㅋㅋㅋㅋ</div>','html');" style='cursor:pointer; border-bottom:2px solid blue; line-height:2;'>html 띄우기1</a><br /> 
        SLB_show('&lt;div style=\'border:2px solid red; width:200px; height:100px; background-color:yellow\'&gt;하하하하하&lt;br /&gt;ㅋㅋㅋㅋ&lt;/div&gt;','html');<br /> 
        SLB_show('html 소스', 'html', 중앙 내용클릭해도 안닫히기?(true or false));  
        <br /><br /> 
        <a onclick="SLB_show('<div id=\'asd\'><div>TABLE</div><table border=1 bgcolor=#ffffff><tr><td>다른곳은</td><td>클릭해도</td></tr><tr><td>안닫힘</td><td onclick=\'SLB_show();\' bgcolor=\'red\'>닫기는여기<br />onclick=\'SLB_show();\'</td></tr></table></div>','html', true);" style='cursor:pointer; border-bottom:2px solid blue; line-height:2;'>html 띄우기2</a> 
        <br /> 
        SLB_show('&lt;div id=\'asd\'&gt;&lt;div&gt;TABLE&lt;/div&gt;&lt;table border=1 bgcolor=#ffffff&gt;&lt;tr&gt;&lt;td&gt;다른곳은&lt;/td&gt;&lt;td&gt;클릭해도&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;안닫힘&lt;/td&gt;&lt;td onclick=\'SLB_show();\' bgcolor=\'red\'&gt;닫기는여기&lt;br /&gt;onclick=\'SLB_show();\'&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;','html', true);<br /><br /><br /> 
        * 닫기는 SLB_show(); 를 호출하면 닫힘<br /> 
        * 아이프래임의 내부에 있는 문서에서 닫을려면 parent.SLB_show(); 로 닫을수 있음.<br /> 
        * 로딩중 표시를 클릭하면 로딩 취소됨<br /> 
        * 반투명배경의 투명도 및 색상은 <br /> 
        &lt;div id="SLB_film" style="z-index: 99997; position:absolute; display:none; width:100%; height:100%; <font style="BACKGROUND-COLOR: #ffff00" color=#fe1100>background-color:#000000; filter:Alpha(opacity=60); opacity:0.6; -moz-opacity:0.6;</font>"&gt;&lt;/div&gt;  
        <br />에서 수정가능

<p><iframe width=200 height=100 id="testframe" name="testframe"></iframe></p>
<pre class="scripts">
testframe.document.write('<p>아이프레임 내부의<br /><br /><select><option value=1 />셀렉트 박스</select></p>');
</pre>
    </div> 
    </body> 
</html>

<script>
<!--
function gotourl(){  
for(i=0;i<=gotourl.arguments.length-1;i+=2){  
  window.open(gotourl.arguments[i],gotourl.arguments[i+1]);
  // 바로 윗 줄 대신 아래걸 사용하면 팝업창의 속성을 지정할 수 있습니다.
  // window.open(gotourl.arguments[i],gotourl.arguments[i+1],"toolbar=no, width=350,height=200");  
}
}
//-->
</script>
  
<a href="javascript:gotourl('http://oxtag.com','frame1','http://hanmail.net','frame2','http://google.com','frame3')">링크클릭</a>  

<br><br>

<iframe src="http://oxtag.com/html/img/newborn.jpg" width=800 height=600 frameborder="0" name="frame3" scrolling=auto style="border:solid 1px gray;"></iframe>

css + js 로 이미지 모서리를 둥글게 만들어 줍니다.
문서가 완전히 로딩된 후 실행되야 오류가 발생하지 않아요.

기본적인 사용은 아래와 같이 해주세요.
----------------------------------------------------------------------

<script type="text/javascript">
    image.rounded(id or element);
</script>

----------------------------------------------------------------------





여러 이미지에 자동으로 적용 하려면 onload 이벤트에, image.roundedAuto를 추가하신 후
img 태그 name 속성에 rounded를 적어 주시면 실행!
----------------------------------------------------------------------

<script type="text/javascript">
    window.onload= image.roundedAuto;
</script>

<img src=http://llllll.org/banner.gif name="rounded">

----------------------------------------------------------------------


익스플로러, 불여우, 오페라  잘돌아가네요~!



------------------------------  소    스  ----------------------------------------

<FONT size=1><style type="text/css"> .imageRounded div{ overflow:hidden; height:1px; } .imageRounded div.r1 { background-position:-5px 0; } .imageRounded div.r1, .imageRounded div.r9 { margin:0 5px; } .imageRounded div.r2 { background-position:-3px -1px; } .imageRounded div.r2, .imageRounded div.r8 { margin:0 3px; } .imageRounded div.r3 { background-position:-2px -2px; } .imageRounded div.r3, .imageRounded div.r7 { margin:0 2px; } .imageRounded div.r4 { background-position:-1px -3px; } .imageRounded div.r4, .imageRounded div.r6 { margin:0 1px; height:2px; } .imageRounded div.r5 { background-position:0px -5px; } </style> <pre class="scripts" type="text/javascript"> function id(str){ return (typeof(str) == "object")? str : document.getElementById(str); } function name(str){ return document.getElementsByName(str); } var image = { rounded : function(element){ var element = id(element); var r5Height = parseFloat(element.height) - 10; if(r5Height<=0) return false; var r6 = r5Height + 5; var r7 = r6 + 2 var r8 = r7 + 1; var r9 = r8 + 1; var inner = ""; inner += ""; inner += ""; inner += ""; inner += ""; inner += ""; inner += ""; inner += ""; inner += ""; inner += ""; var roundedElement = document.createElement("div"); roundedElement.className = "imageRounded"; roundedElement.style.width = element.width+"px"; roundedElement.innerHTML = inner; if(element.parentNode.style.textAlign=="center") roundedElement.style.margin = "0 auto"; element.style.display = "none"; element.parentNode.insertBefore(roundedElement, element.nextSibling); }, roundedAuto : function(){ var elements = name("rounded"); for(i=0, c=elements.length; i<c; i++){ image.rounded(elements[i]); } } } window.onload = image.roundedAuto; </pre> <img src="http://photo-media.hanmail.net/200703/22/newsis/20070322193323.653.0.jpg" name="rounded"><br /> <img src="http://photo-media.hanmail.net/200703/16/newsis/20070316165031.323.0.jpg" name="rounded"><br /> <A href="http://qurx.net/shovelers" target="_blank"><img src="http://qurx.net/sm/banner.gif" border="0"></a> <A href="http://llllll.org" target="_blank"><img src="http://llllll.org/banner.gif" border="0"></a></FONT>

아직 고쳐야 할것은 많고 부족한점이 많지만 많은 분들의 도움으로 조금이나마 업그레이드 하게 되었습니다.
우선 님의 도움으로 고정메뉴의 기능이 생겼습니다.
고정메뉴는 메뉴가 들어가있는 해당페이지에 접속했을때 기본으로 해당메뉴를 띄워주는 역할을 합니다.
여러가지가 바뀌었으므로 xml 부터 첨부된 화일을 새로 받아서 꼭 확인하세요.

다운로드 (압축화일)   미리보기

※ 달라진점들
1. html 내부에 자바스크립트로 플래시의 변수를 모두 입력 받도록 하였습니다.

//flashOpen("SWF화일명","가로","세로","XML명","메인메뉴번호","서브메뉴번호");
flashOpen("submenu.swf","130","350","submenu01","2","3");


2. 처음 띄워지는 메뉴를 고정시켜서 띄워줍니다.
노프레임 페이지에 주로 쓰입니다. 페이지내에 플래시가 활성화된채로 띄워져 있기때문에
각 페이지마다 메인메뉴 와 서브메뉴의 변수를 지정해주면 각 페이지 이동시 해당페이지에 해당하는
메뉴를 보실수 있습니다.


※ 앞으로 업그레이드 할것들
1. 메뉴의 바탕이미지를 외부에서 불러오게합니다. (메뉴배경,메인메뉴배경,서브메뉴배경)

2. html의 변수 하나만 바꿔서 가로메뉴와 세로메뉴를 한개의 화일로 쓰게합니다.
이건 제가 초보라서리 상당히 오랜시간이 걸릴것으로 예상됩니다. (초보의비애)
여러분들의 도움이 절실히 필요합니다.


3. 추가됐으면 하는 기능들을 아래에 써주시면 적극 반영하겠습니다. (제 실력안에서..ㅠㅠ)

4. _alpha 값을 적용할려면 embed 폰트가 꼭 필요한것같습니다. 혹시 위의 메뉴와 잘 어울릴만한
무료폰트가 있으면 알려주세요.

5. 지난번 버전과 마찬가지로 여러분 마음대로 수정하셔서 업그레이드해서 올려주시면 감사하겠습니다.


------------------------------------------------------------------------------------------------------
님 버전도 아래 링크합니다.다시한번 님께 감사드립니다.

다운 여기로... 샘플 여기로...

요즘은 모서리 라운드 테이블이 대세인듯 하지만 각진 테이블도 잘 꾸미면 이쁘답니다.


http://oxtag.com/html/ex/tableTag01.html

<FONT size=1><style type="text/css"> <!-- body,td,div {font-size:9pt;font-family:굴림;} .Box_000{border:solid 0;padding:0;text-align:justify;} .Box_001{width:500px;border:solid 1px;border-color:#E7E7E7;padding:5px 5px 2px 5px;background-color:#F4F4F4;text-align:justify;} .Box_002{width:500px;border:solid 1px;border-color:#DDEAA8;padding:5px 5px 2px 5px;background-color:#FBFDF1;text-align:justify;} .Box_003{width:500px;border:solid 1px;border-color:#F9D5D5;padding:5px 5px 2px 5px;background-color:#FEF6F6;text-align:justify;} .Box_004{width:500px;border:solid 1px;border-color:#EFDAF4;padding:5px 5px 2px 5px;background-color:#FCF7FD;text-align:center;} .Box_005{width:500px;border:solid 1px;border-color:#DCDFF6;padding:5px 5px 2px 5px;background-color:#F6F7FE;text-align:center;} .Box_006{width:500px;border:solid 1px;border-color:#DAEAEE;padding:5px 5px 2px 5px;background-color:#F0F6F8;text-align:right;} .Box_007{width:500px;border:solid 1px;border-color:#D5EDDD;padding:5px 5px 2px 5px;background-color:#EFF9F2;text-align:right;} .Box_008{width:500px;border:solid 1px;border-color:#FFEC15;padding:5px 5px 2px 5px;background-color:#FFFCDF;text-align:right;} .Box_009{width:500px;border:solid 1px;border-color:#9DD7E8;padding:5px 5px 2px 5px;background-color:#F8FDFF;text-align:center;} body { scrollbar-highlight-color: #009AFF; scrollbar-shadow-color: #009AFF; scrollbar-arrow-color: #009AFF; scrollbar-face-color: #FFFFFF; scrollbar-3dlight-color: #FFFFFF; scrollbar-darkshadow-color: #FFFFFF; scrollbar-track-color: #FFFFFF; } --> </style> <center> <div class="Box_001" style="color:#696969"> 이쁜 테이블 입니다.<br />이쁜 테이블 입니다. </div> <br /> <div class="Box_002" style="color:#99B81A"> 이쁜 테이블 입니다.<br />이쁜 테이블 입니다. </div> <br /> <div class="Box_003" style="color:#D98383"> 이쁜 테이블 입니다.<br />이쁜 테이블 입니다. </div> <br /> <div class="Box_004" style="color:#AF69C0"> 이쁜 테이블 입니다.<br />이쁜 테이블 입니다. </div> <br /> <div class="Box_005" style="color:#7381EA"> 이쁜 테이블 입니다.<br />이쁜 테이블 입니다. </div> <br /> <div class="Box_006" style="color:#619DAC"> 이쁜 테이블 입니다.<br />이쁜 테이블 입니다. </div> <br /> <div class="Box_007" style="color:#6FB587"> 이쁜 테이블 입니다.<br />이쁜 테이블 입니다. </div> <br /> <div class="Box_008" style="color:#FF9900"> 이쁜 테이블 입니다.<br />이쁜 테이블 입니다. </div> <br /> <div class="Box_009" style="color:#0A8DBD"> 이쁜 테이블 입니다.<br />이쁜 테이블 입니다. </div> <br /> </center> <TABLE cellSpacing="0" cellPadding="0" width="500px" border="0" align="center"> <TBODY> <TR> <TD style="border:solid 1px;border-color:#dacaae;"> <TABLE cellSpacing="0" cellPadding="11px" width="500px" border="0"> <TBODY> <TR> <TD style="border:solid 1px;border-color:#FFFFFF;background-color:#f5f1e8;"> <TABLE cellSpacing="0" cellPadding="15px" width="100%" border="0"> <TBODY> <TR> <TD bgColor="#fcfaf7" align="center"> <font color=#977334>내용입력<br />내용입력<br />내용입력<br />내용입력<br />내용입력<br />내용입력<br />내용입력<br /></font> </TD> </TR> </TBODY> </TABLE> </TD> </TR> </TBODY> </TABLE> </TD> </TR> </TBODY> </TABLE> <br /> <TABLE style="BORDER-RIGHT: #dce4fd 1px solid; BORDER-TOP: #dce4fd 1px solid; BORDER-LEFT: #dce4fd 1px solid; BORDER-BOTTOM: #dce4fd 1px solid" cellSpacing="7px" cellPadding="0" width="500px" bgColor="#eff2fe" border="0" align="center"> <TBODY> <TR> <TD bgColor="#f7f9fe"> <TABLE cellSpacing="0" cellPadding="0" width="100%" height="100px" border="0"> <TBODY> <TR> <TD vAlign="top" align="center"> <font color=#7187CA><br />내용입력<br />내용입력<br /></font> </TD> </TR> </TBODY> </TABLE> </TD> </TR> </TBODY> </TABLE> <br /> <TABLE style="BORDER-RIGHT: #ffdceb 1px solid; BORDER-TOP: #ffdceb 1px solid; BORDER-LEFT: #ffdceb 1px solid; BORDER-BOTTOM: #ffdceb 1px solid" cellSpacing="4px" cellPadding="0" width="500px" bgColor="#ffeff6" border="0" align="center"> <TBODY> <TR> <TD bgColor="#fff9fd"> <TABLE cellSpacing="0" cellPadding="0" width="100%" height="100px" border="0"> <TBODY> <TR> <TD vAlign="top" align="center"> <font color="#E8649D"><br />내용입력<br />내용입력<br /></font> </TD> </TR> </TBODY> </TABLE> </TD> </TR> </TBODY> </TABLE></FONT>

무료로 사용이 가능한 사이트 디자인 템플릿을 공유해 주는 사이트입니다.

무료로 나눠준다고 해서 퀄리티가 전혀 떨어지지 않습니다. 이런 디자인 템플릿을 이용해서 디자인을 못하는 분들도 약간의 코드만 안다면 자신만의 블로그를 만드는 것도 가능 할 것 같습니다.


F0edf4b3bfe1a3a5b43527c638b0eeaa225 4f789f145f47ec42a5d3e4f65596b59b96a D9625f80178eaa163b68d734a0ddc76b538 762fb7d21d12841413c2e106aae756d147b F3473cad81e9e1a323e4cd163e438d0d5c9 Fba13b190f8b37521d205c0fa1023ba9129
1f743ca9d1fdcacc18d5f0bb356f8bddf44 6a0955e9389a8f571cdc93ead240aea9ea1 A6bcd9abf733ca6a4a1211fd10002317dbb 5584a7009e24f41587f325820a97d30196f 35c3beab702bfed9b76742d402cd1677ab7 16abf509f049f22ea37c559c15681a2cd0f
 
구글도 보니고..엠파스도 보이고...현대도 보이고...ㅋㅋㅋ
 
 
주소 넣고 2dots 를 눌러주면 됩니당.
 
파비콘을 저런식으로 변환해서 보니 아주 예쁘네요.
 
사이트 상단에 있는 색상 테마별로 눌러 보니 많이 나오네요.

-------------------------------------------------------------------------

패비콘(Favicon) 쉽게 만들기

가지고 있는 이미지 파일을 올리면 자동으로 16x16 픽셀 정도 icon 변환을 해주는 곳이에요 'ㅅ'!

http://www.chami.com/html-kit/services/favicon/


서핑하다가 이메일 인증을 받아야 할 때, 스팸메일이 두려워서 함부로 이메일 주소를 적기가 꺼려질 때가 많은데요.

그럴 때 사용하면 유용한 사이트 일 것 같습니다.

들어가서 "Get temporary e-mail"만 클릭하면 바로 임시 이메일 주소가 만들어지고, 이 주소는 15분간 지속됩니다.

물론 더 늘리고 싶을 때, "Give me 15 more minutes"를 누르면 다시 남은 시간이 15분으로 늘어납니다.


메일이 오면 실시간으로 도착한 메일을 확인을 할 수 있기 때문에, 유용하게 사용할 수 있을 것 같습니다.

Guerrillamail.com 가기




디씨인사이드에서 보고 알게 되어 써봤는데 괜찮네요.


PCFREE와 U2 2개 쓰고 있었는데, KS1을 써보니 또 다른 악성코드들이 발견되네요.

정밀 검사가 아니면 검색 속도도 빠르고 부가 기능들도 괜찮은 편입니다.

아래 링크를 누르시면 디씨인사이드의 KS1 소개페이지로 넘어갑니다.

KS1 소개 보러가기

















다른 사이트의 내용을 원하는 부분만 출력하는 팁입니다.
제 사이트를 제 다른 사이트에 표시하기 위에 이미 서비스가 제공되는 다른 사이트를 이용해 봤지만
생각보다 맘에 들지 않더라구요, 그래서 직접 만들어 봤습니다.

생각해 보니 아이프레임을 2개 중첩하면 만들수 있더랍니다.
갖어올 파일과, 표시할 파일이 필요하구요.

가져올파일 소스를 아래와 같이 합니다.
예) piece.html
---------------------------------------------------------

 <div id="wrap" style="position:absolute; top:-세로시작값px; left:-가로시작값px;">
  <iframe src="가져올주소" width="1000" height="1000" scrolling="no" frameborder="0"></iframe>
 </div>

---------------------------------------------------------
가로시작값이나, 세로 시작값은 페이지 출력이 시작되는 좌표 입니다.


표시할 파일 소스는 아래와 같이 합니다.
---------------------------------------------------------

 <iframe src="piece.html" width="가로크기" height="세로크기" frameborder="0" scrolling="no"></iframe>

---------------------------------------------------------

원리나 방법은 무척이나 간편하죠?
단점은 출력되는 좌표값을 알아내는게 어려울 뿐입니다.
곰곰히 생각하니 갖어올 페이지를 일일이 만들어야 되는것도 귀찮구요.

그래서 위치 에디터와 갖어올 파일을 생성하는 소스도 만들어 봤습니다.

각종 폼 값을 입력 후 Piece Size에서,
클릭으로 가로와, 세로 위치를, Shift+클릭으로 크기를 지정하면 소스를 만들어 줍니다.

에디터 미리보기 : http://qurx.net/_tools/wp/editor.html
소스 받기 : http://qurx.net/_tools/wp.zip



생성기(index.html)는 주소에 옵션을 입력하는 방식입니다
이 옵션을 에디터에 그대로 대입하면 옵션 그대로 수정할 수 있습니다.

예) u=주소&y=가로시작값x=세로시작값

에디터 지원 옵션------------------------------------------

u : 주소
y : 가로시작값
x : 세로시작값
w : 가로크기
h : 세로크기
l  : 링크옵션 [기본 0](1/링크방지, 2/원본사이트, URL/특정주소)
c : 배경색

에디터 미 지원 옵션---------------------------------------

ffx : 파이어폭스 세로 값
ffy : 파이어폭스 가로 값
opx : 오페라 세로값
opy : 오페라 가로값
r : 가져오는 페이지 해상도 [기본 1000,1000](가로,세로)
p : 링크시 타겟 [기본 parent]


---------------------------------------------------------

문제점이 있다면
1 . 로딩 후 특정 폼으로 이동하는 페이지의 경우 위치가 틀어집니다.
2 . 브라우저마다 위치가 다를 수 있습니다(ffx, ffy, opx, opy 사용으로 해결!)

사이트의 소스를 재가공하는 방식이 아니기에 저작권에 문제는 없을 듯 합니다만,
원본페이지의 운영자가 거부하는 경우 될수 있으면 사용하면 안되겠죠?



<html> <head> <script type="text/javascript">if (!window.T) { window.T = {} } window.T.config = {"TOP_SSL_URL":"https://www.tistory.com","PREVIEW":false,"ROLE":"guest","PREV_PAGE":"","NEXT_PAGE":"","BLOG":{"id":140595,"name":"bbobbi","title":"영원한사랑","isDormancy":true,"nickName":"FunB","status":"open","profileStatus":"normal"},"NEED_COMMENT_LOGIN":false,"COMMENT_LOGIN_CONFIRM_MESSAGE":"","LOGIN_URL":"https://www.tistory.com/auth/login/?redirectUrl=http://bbobbi.tistory.com/category/%25EC%259D%25B8%25ED%2584%25B0%25EB%2584%25B7%25EC%25A0%2595%25EB%25B3%25B4","DEFAULT_URL":"https://bbobbi.tistory.com","USER":{"name":null,"homepage":null,"id":0,"profileImage":null},"SUBSCRIPTION":{"status":"none","isConnected":false,"isPending":false,"isWait":false,"isProcessing":false,"isNone":true},"IS_LOGIN":false,"HAS_BLOG":false,"IS_SUPPORT":false,"TOP_URL":"http://www.tistory.com","JOIN_URL":"https://www.tistory.com/member/join","ROLE_GROUP":"visitor"}; window.T.entryInfo = null; window.appInfo = {"domain":"tistory.com","topUrl":"https://www.tistory.com","loginUrl":"https://www.tistory.com/auth/login","logoutUrl":"https://www.tistory.com/auth/logout"}; window.initData = {}; window.TistoryBlog = { basePath: "", url: "https://bbobbi.tistory.com", tistoryUrl: "https://bbobbi.tistory.com", manageUrl: "https://bbobbi.tistory.com/manage", token: "RLTIG/XhIIx/o430GXKMIobPAns9uiXfKI9gYfQS+efD1KT16/sWTPSalDtT2z9d" }; var servicePath = ""; var blogURL = "";</script> <title>World Piece!</title> <style type="text/css">.another_category { border: 1px solid #E5E5E5; padding: 10px 10px 5px; margin: 10px 0; clear: both; } .another_category h4 { font-size: 12px !important; margin: 0 !important; border-bottom: 1px solid #E5E5E5 !important; padding: 2px 0 6px !important; } .another_category h4 a { font-weight: bold !important; } .another_category table { table-layout: fixed; border-collapse: collapse; width: 100% !important; margin-top: 10px !important; } * html .another_category table { width: auto !important; } *:first-child + html .another_category table { width: auto !important; } .another_category th, .another_category td { padding: 0 0 4px !important; } .another_category th { text-align: left; font-size: 12px !important; font-weight: normal; word-break: break-all; overflow: hidden; line-height: 1.5; } .another_category td { text-align: right; width: 80px; font-size: 11px; } .another_category th a { font-weight: normal; text-decoration: none; border: none !important; } .another_category th a.current { font-weight: bold; text-decoration: none !important; border-bottom: 1px solid !important; } .another_category th span { font-weight: normal; text-decoration: none; font: 10px Tahoma, Sans-serif; border: none !important; } .another_category_color_gray, .another_category_color_gray h4 { border-color: #E5E5E5 !important; } .another_category_color_gray * { color: #909090 !important; } .another_category_color_gray th a.current { border-color: #909090 !important; } .another_category_color_gray h4, .another_category_color_gray h4 a { color: #737373 !important; } .another_category_color_red, .another_category_color_red h4 { border-color: #F6D4D3 !important; } .another_category_color_red * { color: #E86869 !important; } .another_category_color_red th a.current { border-color: #E86869 !important; } .another_category_color_red h4, .another_category_color_red h4 a { color: #ED0908 !important; } .another_category_color_green, .another_category_color_green h4 { border-color: #CCE7C8 !important; } .another_category_color_green * { color: #64C05B !important; } .another_category_color_green th a.current { border-color: #64C05B !important; } .another_category_color_green h4, .another_category_color_green h4 a { color: #3EA731 !important; } .another_category_color_blue, .another_category_color_blue h4 { border-color: #C8DAF2 !important; } .another_category_color_blue * { color: #477FD6 !important; } .another_category_color_blue th a.current { border-color: #477FD6 !important; } .another_category_color_blue h4, .another_category_color_blue h4 a { color: #1960CA !important; } .another_category_color_violet, .another_category_color_violet h4 { border-color: #E1CEEC !important; } .another_category_color_violet * { color: #9D64C5 !important; } .another_category_color_violet th a.current { border-color: #9D64C5 !important; } .another_category_color_violet h4, .another_category_color_violet h4 a { color: #7E2CB5 !important; } </style> <link rel="stylesheet" type="text/css" href="https://tistory1.daumcdn.net/tistory_admin/userblog/tistory-e11b6cd63d67e948b9dd33a1d0a60492dd6a0cbf/static/style/revenue.css"/> <link rel="canonical" href="https://bbobbi.tistory.com"/> <!-- BEGIN STRUCTURED_DATA --> <script type="application/ld+json"> {"@context":"http://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":0,"item":{"@id":"https://bbobbi.tistory.com/entry/%ED%99%94%EC%9D%B4%ED%8A%B8-%EB%8F%84%EB%A9%94%EC%9D%B8-%EC%8B%A4%EC%8B%9C%EA%B0%84-%EC%8A%A4%ED%8C%B8-%EC%B0%A8%EB%8B%A8-%EB%A6%AC%EC%8A%A4%ED%8A%B8","name":"화이트 도메인, 실시간 스팸 차단 리스트"}},{"@type":"ListItem","position":1,"item":{"@id":"https://bbobbi.tistory.com/entry/HTML%EC%95%88%EC%9D%98-href%EC%99%80-src%EC%9D%98-%EC%A3%BC%EC%86%8C%EB%A7%8C-%EB%B9%BC%EB%82%B4%EB%8A%94-%EC%A0%95%EA%B7%9C%EC%8B%9D","name":"HTML안의 href와 src의 주소만 빼내는 정규식"}},{"@type":"ListItem","position":2,"item":{"@id":"https://bbobbi.tistory.com/entry/%EC%93%B8%EB%AA%A8%EC%9E%88%EB%8A%94-%EC%A0%95%EA%B7%9C%EC%8B%9D-%EB%AA%A8%EC%9D%8C-JS%EB%B2%84%EC%A0%84","name":"쓸모있는 정규식 모음 JS버전"}},{"@type":"ListItem","position":3,"item":{"@id":"https://bbobbi.tistory.com/entry/IEFFGeckoW3C-%EC%9D%B4%EB%B2%A4%ED%8A%B8-%EC%84%A4%EB%AA%85","name":"IE/FF(Gecko,W3C) 이벤트 설명"}},{"@type":"ListItem","position":4,"item":{"@id":"https://bbobbi.tistory.com/entry/%EC%98%A4%EB%A5%B8%EC%AA%BD%EB%A7%88%EC%9A%B0%EC%8A%A4%EB%B2%84%ED%8A%BC%ED%82%A4%EB%B3%B4%EB%93%9C-%EC%9E%85%EB%A0%A5-%EB%B0%A9%EC%A7%80%EB%93%9C%EB%9E%98%EA%B7%B8%EA%B8%88%EC%A7%80-%ED%8A%B9%EC%A0%95%ED%82%A4-%EC%A0%9C%EC%96%B4","name":"오른쪽마우스버튼,키보드 입력 방지,드래그금지, 특정키 제어"}},{"@type":"ListItem","position":5,"item":{"@id":"https://bbobbi.tistory.com/entry/%EC%98%A4%ED%94%88%EB%A7%88%EC%BC%93-%EA%B4%91%EA%B3%A0-%EC%98%A5%EC%85%98-%EA%B4%91%EA%B3%A0-%EC%A7%80%EB%A7%88%EC%BC%93-%EA%B4%91%EA%B3%A0-%EC%97%A0%ED%94%8C-%EA%B4%91%EA%B3%A0-%EC%98%A8%EC%BC%93-%EA%B4%91%EA%B3%A0","name":"오픈마켓 광고, 옥션 광고, 지마켓 광고, 엠플 광고, 온켓 광고"}},{"@type":"ListItem","position":6,"item":{"@id":"https://bbobbi.tistory.com/entry/%ED%8F%B0%ED%8A%B8-%EC%82%AC%EC%9D%B4%ED%8A%B8","name":"폰트 사이트"}},{"@type":"ListItem","position":7,"item":{"@id":"https://bbobbi.tistory.com/entry/%EB%A0%88%EC%9D%B4%EC%96%B4-%EC%97%AC%EB%9F%AC%EA%B0%9C-%EB%B0%98%ED%88%AC%EB%AA%85%ED%95%98%EA%B2%8C-%EA%B5%90%EC%B0%A8%ED%95%98%EA%B8%B0","name":"레이어 여러개 반투명하게 교차하기"}},{"@type":"ListItem","position":8,"item":{"@id":"https://bbobbi.tistory.com/entry/%EB%AA%A8%EC%84%9C%EB%A6%AC-%EB%91%A5%EA%B7%BC-%ED%85%8C%EC%9D%B4%EB%B8%94-%EC%9D%B4%EB%AF%B8%EC%A7%80-%EC%97%86%EC%9D%B4-%EA%B5%AC%ED%98%84%ED%95%98%EA%B8%B0","name":"모서리 둥근 테이블, 이미지 없이 구현하기"}},{"@type":"ListItem","position":9,"item":{"@id":"https://bbobbi.tistory.com/entry/%EB%A1%9C%EB%94%A9-%ED%8E%98%EC%9D%B4%EC%A7%80%EC%97%90-%EB%93%A4%EC%96%B4%EA%B0%88-%EC%9D%B4%EB%AF%B8%EC%A7%80%EA%B0%80-%EC%97%AC%EA%B8%B0%EB%8B%A4-%EC%9E%88%EC%8A%B5%EB%8B%88%EB%8B%A4","name":"로딩 페이지에 들어갈 이미지가 여기다 있습니다"}},{"@type":"ListItem","position":10,"item":{"@id":"https://bbobbi.tistory.com/entry/%EB%9D%BC%EC%9D%B4%ED%8A%B8%EB%B0%95%EC%8A%A4-%ED%9A%A8%EA%B3%BC-%EC%9D%B4%EB%AF%B8%EC%A7%80-%EC%95%84%EC%9D%B4%ED%94%84%EB%A0%98-html-%EC%A7%80%EC%9B%90","name":"라이트박스 효과 (이미지, 아이프렘, html 지원)"}},{"@type":"ListItem","position":11,"item":{"@id":"https://bbobbi.tistory.com/entry/%ED%81%B4%EB%A6%AD-%ED%95%9C%EB%B2%88%EC%9C%BC%EB%A1%9C-%EC%B0%BD-%EC%97%AC%EB%9F%AC%EA%B0%9C-%EB%9D%84%EC%9A%B0%EA%B8%B0","name":"클릭 한번으로 창 여러개 두개 이상 띄우기"}},{"@type":"ListItem","position":12,"item":{"@id":"https://bbobbi.tistory.com/entry/%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8%EB%A1%9C-%EC%9D%B4%EB%AF%B8%EC%A7%80-%EB%AA%A8%EC%84%9C%EB%A6%AC%EB%A5%BC-%EB%91%A5%EA%B8%80%EA%B2%8C","name":"스크립트로 이미지 모서리를 둥글게"}},{"@type":"ListItem","position":13,"item":{"@id":"https://bbobbi.tistory.com/entry/XML-%EC%9D%84-%EC%9D%B4%EC%9A%A9%ED%95%9C-%EC%84%B8%EB%A1%9C-%ED%94%8C%EB%9E%98%EC%8B%9C-%EB%A9%94%EB%89%B4-Ver-11","name":"XML 을 이용한 세로 플래시 메뉴 Ver 1.1"}},{"@type":"ListItem","position":14,"item":{"@id":"https://bbobbi.tistory.com/entry/%EC%9D%B4%EC%81%9C-%ED%85%8C%EC%9D%B4%EB%B8%94-%ED%83%9C%EA%B7%B8%EC%9E%85%EB%8B%88%EB%8B%A4","name":"이쁜 테이블 태그입니다."}},{"@type":"ListItem","position":15,"item":{"@id":"https://bbobbi.tistory.com/entry/%EB%AC%B4%EB%A3%8C-%EC%82%AC%EC%9A%A9-%EA%B0%80%EB%8A%A5%ED%95%9C-%EC%98%A4%ED%94%88-%EB%94%94%EC%9E%90%EC%9D%B8-%EC%82%AC%EC%9D%B4%ED%8A%B8-14%EA%B3%B3-%EB%AA%A8%EC%9D%8C","name":"무료 사용 가능한 오픈 디자인 사이트 14곳 모음"}},{"@type":"ListItem","position":16,"item":{"@id":"https://bbobbi.tistory.com/entry/%ED%8C%A8%EB%B9%84%EC%BD%98%EC%9D%84-3d-%EB%8F%84%ED%8A%B8%EB%A1%9C-%EB%B3%80%ED%99%98%ED%95%B4%EC%A3%BC%EB%8A%94-%EC%82%AC%EC%9D%B4%ED%8A%B8","name":"패비콘을 3d 도트로 변환해주는 사이트"}},{"@type":"ListItem","position":17,"item":{"@id":"https://bbobbi.tistory.com/entry/%EC%9E%84%EC%8B%9C-%EC%9D%B4%EB%A9%94%EC%9D%BC-%EC%A3%BC%EC%86%8C%EB%A5%BC-%EB%A7%8C%EB%93%A4%EC%96%B4%EC%A3%BC%EB%8A%94-%EA%B2%8C%EB%A6%B4%EB%9D%BC%EB%A9%94%EC%9D%BC-Guerrilla-Mail","name":"임시 이메일 주소를 만들어주는 게릴라메일 - Guerrilla Mail"}},{"@type":"ListItem","position":18,"item":{"@id":"https://bbobbi.tistory.com/entry/%ED%95%9C%EA%B5%AD%EC%A0%95%EB%B3%B4%ED%86%B5%EC%8B%A0%EA%B8%B0%EC%88%A0%ED%98%91%ED%9A%8C%EA%B0%80-%EC%9D%B8%EC%A6%9D%ED%95%9C-%ED%95%9C%EA%B5%AD%ED%98%95-%EB%AC%B4%EB%A3%8C-%EC%95%88%ED%8B%B0%EC%8A%A4%ED%8C%8C%EC%9D%B4%EC%9B%A8%EC%96%B4-KS1","name":"한국정보통신기술협회가 인증한 한국형 무료 안티스파이웨어 KS1"}},{"@type":"ListItem","position":19,"item":{"@id":"https://bbobbi.tistory.com/entry/%EC%9B%B9%EC%82%AC%EC%9D%B4%ED%8A%B8-%ED%8A%B9%EC%A0%95-%EB%B6%80%EB%B6%84%EB%A7%8C-%EC%B6%9C%EB%A0%A5%ED%95%98%EA%B8%B0-iframe","name":"웹사이트 특정 부분만 출력하기 - iframe"}},{"@type":"ListItem","position":20,"item":{"@id":"https://bbobbi.tistory.com/entry/%EB%93%80%EC%96%BC%EC%BD%94%EC%96%B4-%ED%99%9C%EC%9A%A9%ED%95%98%EA%B8%B0","name":"듀얼코어 활용하기"}},{"@type":"ListItem","position":21,"item":{"@id":"https://bbobbi.tistory.com/entry/%EB%AA%A8%EB%93%A0-%ED%8C%8C%EC%9D%BC%ED%98%95%EC%8B%9D%EB%93%A4-%ED%8C%8C%EC%9D%BC-%ED%99%95%EC%9E%A5%EC%9E%90-%EB%AA%A9%EB%A1%9D","name":"모든 파일형식들 (파일 확장자 목록)"}}]} </script> <!-- END STRUCTURED_DATA --> <link rel="stylesheet" type="text/css" href="https://tistory1.daumcdn.net/tistory_admin/userblog/tistory-e11b6cd63d67e948b9dd33a1d0a60492dd6a0cbf/static/style/dialog.css"/> <link rel="stylesheet" type="text/css" href="//t1.daumcdn.net/tistory_admin/www/style/top/font.css"/> <link rel="stylesheet" type="text/css" href="https://tistory1.daumcdn.net/tistory_admin/userblog/tistory-e11b6cd63d67e948b9dd33a1d0a60492dd6a0cbf/static/style/postBtn.css"/> <link rel="stylesheet" type="text/css" href="https://tistory1.daumcdn.net/tistory_admin/userblog/tistory-e11b6cd63d67e948b9dd33a1d0a60492dd6a0cbf/static/style/comment.css"/> <link rel="stylesheet" type="text/css" href="https://tistory1.daumcdn.net/tistory_admin/userblog/tistory-e11b6cd63d67e948b9dd33a1d0a60492dd6a0cbf/static/style/tistory.css"/> <script type="text/javascript" src="https://tistory1.daumcdn.net/tistory_admin/userblog/tistory-e11b6cd63d67e948b9dd33a1d0a60492dd6a0cbf/static/script/common.js"></script> <script type="text/javascript" src="https://tistory1.daumcdn.net/tistory_admin/userblog/tistory-e11b6cd63d67e948b9dd33a1d0a60492dd6a0cbf/static/script/comment.js" defer=""></script> </head> <body> <h1>World Piece!</h1> <div> <!-- World Piece --> <!-- http://qurx.net/_tools/wp/editor.html?u=http%3A//media.daum.net/%3Fnil_profile%3Dg%26nil_newstitle%3D0&x=148&y=148&w=367&h=459&l=0 --> <iframe src="http://qurx.net/_tools/wp?u=http%3A//media.daum.net/%3Fnil_profile%3Dg%26nil_newstitle%3D0&x=148&y=148&w=367&h=459&l=0&" width="367" height="459" frameborder="0" scrolling="no" style="margin-right:130px"> </iframe> <!-- /World Piece --> <!-- World Piece --> <!-- http://qurx.net/_tools/wp/editor.html?u=http%3A//cartoon.media.daum.net/&x=12&y=201&w=125&h=498&l=1&l=http%3A//llllll.org --> <iframe src="http://qurx.net/_tools/wp?u=http%3A//cartoon.media.daum.net/&x=12&y=201&w=125&h=498&l=1&l=http%3A//llllll.org" width="125" height="498" frameborder="0" scrolling="no"> </iframe> <!-- /World Piece --> </div> <div> <!-- World Piece --> <!-- http://qurx.net/_tools/wp/editor.html?u=http%3A//cartoon.media.daum.net/&x=151&y=408&w=629&h=354&l=1&l=http%3A//llllll.org --> <iframe src="http://qurx.net/_tools/wp?u=http%3A//cartoon.media.daum.net/&x=151&y=408&w=629&h=354&l=1&l=http%3A//llllll.org&p=3" width="629" height="354" frameborder="0" scrolling="no"> </iframe> <!-- /World Piece --> </div> <script type="text/javascript">(function($) { $(document).ready(function() { lightbox.options.fadeDuration = 200; lightbox.options.resizeDuration = 200; lightbox.options.wrapAround = false; lightbox.options.albumLabel = "%1 / %2"; }) })(tjQuery);</script> <div style="margin:0; padding:0; border:none; background:none; float:none; clear:none; z-index:0"></div> <script type="text/javascript" src="https://tistory1.daumcdn.net/tistory_admin/userblog/tistory-e11b6cd63d67e948b9dd33a1d0a60492dd6a0cbf/static/script/common.js"></script> <script type="text/javascript">window.roosevelt_params_queue = window.roosevelt_params_queue || [{channel_id: 'dk', channel_label: '{tistory}'}]</script> <script type="text/javascript" src="//t1.daumcdn.net/midas/rt/dk_bt/roosevelt_dk_bt.js" async="async"></script> <script type="text/javascript" src="https://tistory1.daumcdn.net/tistory_admin/userblog/tistory-e11b6cd63d67e948b9dd33a1d0a60492dd6a0cbf/static/script/menubar.min.js"></script> <script>window.tiara = {"svcDomain":"user.tistory.com","section":"기타","trackPage":"글뷰_보기","page":"글뷰","key":"140595","customProps":{"userId":"0","blogId":"140595","entryId":"null","role":"guest","trackPage":"글뷰_보기","filterTarget":false},"entry":null,"kakaoAppKey":"3e6ddd834b023f24221217e370daed18","appUserId":"null"}</script> <script type="module" src="https://t1.daumcdn.net/tistory_admin/frontend/tiara/v1.0.0/index.js"></script> <script src="https://t1.daumcdn.net/tistory_admin/frontend/tiara/v1.0.0/polyfills-legacy.min.js" nomodule="true" defer="true"></script> <script src="https://t1.daumcdn.net/tistory_admin/frontend/tiara/v1.0.0/index-legacy.js" nomodule="true" defer="true"></script> </body> </html>

http://www.parkoz.com/zboard/view.php?id=my_tips&page=1&sn1=&divpage=2&sn=off&ss=on&sc=off&select_arrange=headnum&desc=asc&no=9040

이것은 OS가 듀얼코어를 100% 지원하지 않게끔 설정되어 있기 때문이라고 하네요


따라서 직접 설정을 통해 듀얼코어를 최대한 발휘하게 해 주는 것이라고 합니다



 

요구사항


서비스팩2가 깔린 윈도 XP(홈이던, 프로던, 미디어센터 버전이던 무관..

심지어 애플 부트캠프까지! 단 가상PC로는 안됨)


멀티코어 컴퓨터(인텔, AMD 무관, 애플 맥북도 상관없음. HT기술을 이용한 '논리적' 듀얼코어도 상관없음)

$$$ 임시 파일  
ACE ACE Archiver 압축 파일  
ACF 마이크로소프트 에이전트, HTTP 문자 파일  
ACL 코렐 드로우 6, 키보드 가속기 파일  
ACM 윈도우 시스템 디렉토리 파일  
ACM Fallout 1,2, Baulder's Gate, 인터플레이 압축 사운드 파일  
ACM Dynamic Link Library (DLL)  
ACS 마이크로소프트 에이전트, 문자 구조의 저장 파일  
AI 어도비 일러스트레이터 파일  
AI 코렐 트레이스 드로잉  
AIF, AIFF Audio Interchange File, 실리콘그래픽스와 매킨토시의 응용프로그램에서 사용되는 사운드파일 형식  
ALZ 이스트소프트 - 알집, 압축 파일  
APP Centura Team Developer, Normal mode 애플리케이션 파일  
APP 심포니, 애드인 애플리케이션  
APP 마이크로소프트 비주얼 폭스프로, 생성된 애플리케이션 또는 활성화된 문서  
APP dBase, 애플리케이션 생성기 객체  
APP DR-DOS, 실행 애플리케이션  
APP 폭스프로, 생성된 애플리케이션  
APR ArcView 프로젝트 파일  
APR Employee Appraiser 퍼포먼스 리뷰 파일  
APR 로터스 어프로치 97 뷰 파일  
ARC LH ARC (old version) 압축 아카이브  
ARC SQUASH 압축 아카이브  
ARJ Robert Jung ARJ 압축 아카이브  
ASF 마이크로소프트 Advanced Streaming Format 파일  
ASM 어셈블러 파일, 컴파일되지 않은 어셈블리어 파일  
ASP Active Server Page 파일 (마이크로소프 ASP 스크립트를 포함하고 있는 HTML 파일)  
ASV 자동저장 파일 (Auto Save File)  
ASX Cheyenne 백업 스크립트  
ASX 마이크로소프트 Advanced Streaming Redirector 파일  
ASX 비디오 파일  
ATT AT&T 그룹 4 비트맵  
AU Sun/NeXT/DEC/UNIX 등에서 쓰이는 사운드 파일  
AVI 윈도우즈 무비를 위한 마이크로소프트 오디오 및 비디오 파일  

BAK 백업파일  
BAS 비주얼 베이직 모듈 파일  
BAT MS-DOS 일괄처리 파일  
BGDB 영산정보통신 배움닷컴용 GVA, 인증기능을 가진 강의 파일 (배움닷컴에서만 서비스받을 수 있음)  
BIN 바이너리 파일  
BMF Corel, 갤러리 파일  
BMP 윈도우 또는 OS/2의 비트맵 그래픽 파일  
BNK Electronic Arts 사운드 효과 뱅크 파일  
BNK 애드립의 악기 뱅크 파일  
BTR Btrieve 5.1, 데이터베이스 파일  

C C 언어 소스 코드  
CAB 마이크로소프트 캐비넷 파일 (소프트웨어 배포를 위해 압축된 프로그램 파일들)  
CAD 소프트데스크 드라픽스 캐드 파일  
CAL 윈도우 캘린더 파일  
CAM 카시오(Casio) 카메라 파일  
CAP 이야기97용 갈무리 파일  
CAT dBase, 카탈로그 파일  
CBL RM-COBOL, 원시코드 파일  
CC C++ 언어 소스 코드  
CCA cc:mail 아카이브 파일  
CDA CD 오디오 트랙  
CDF 마이크로소프트 채널 정의 형식 파일  
CDR 코렐 드로우 파일  
CDT 코렐 드로우 템플릿 파일  
CDX 코렐 드로우 압축 파일  
CER 보안 인증서  
CFG 구성 파일  
CFM ColdFusion, 템플릿  
CFM 비주얼 dBASE, 윈도우 커스토머 폼  
CFM 코렐. 폰트마스터 파일  
CGI CGI 스크립트 파일  
CGM 컴퓨터 그래픽 메타파일  
CHK 도스에서 CHKDSK를 써서 복원된 파일  
CHM Compiled HTML 파일  
CLASS 자바 클래스 파일  
CLP 윈도우 클립보드 파일  
CLS 비주얼베이직 클래스 모듈  
CMD Windows NT (OS의 .BAT 파일과 비슷함) 및 OS/2의 명령 파일  
CNV Word for Windows, 데이터 변환 지원 파일  
CNV WordPerfect for Windows, 임시 파일  
CNV WS_FTP Pro, 변환 파일  
COB COBOL 소스 코드  
COM MS-DOS용 실행 파일  
CPL 윈도우 제어판 파일  
CPP 비주얼 C/C++ 소스 파일  
CRC RZSplit, 분할된 파일에 관한 정보  
CSS Cascading Style Sheet file (MIME)  
CSV Comma-separated values file  
CUE 마이크로소프트 Cue Cards 데이터  
CUR 윈도우 커서  
CXX C++ 소스코드 파일  

DAT 데이터 파일, 어떤 종류의 MPEG에서는 확장자가 DAT로 되어 있는 경우도 있음  
DBF dBase 파일  
DBF Oracle 8.1.x 테이블공간 파일  
DBK dBase 데이터베이스 백업  
DBX Outlook Express 5, 메일 저장 파일  
DCR 쇽웨이브 파일  
DCU 델파이 컴파일드 유니트  
DGN Microstation95 CAD 도면  
DIB 장치 독립적인 비트맵 (Device-independent bitmap)  
DIR 매크로미디어 디렉터 파일  
DIR ProComm Plus 다이얼링 디렉토리  
DLL Dynamic Link Library  
DLG C++, 다이얼로그 스크립트  
DMP 화면이나 메모리의 덤프 파일  
DOC 마이크로소프트 워드 파일  
DOT 마이크로소프트 서식 파일  
DPR 델파이 프로젝트 파일  
DRV 드라이버 파일  
DSF Micrografx Designer v7.x  
DSF Delusion, 디지털 사운드 파일  
DTD SGML의 문서형식정의(DFD) 파일  
DRW Micrografx 벡터 그래픽 파일  
DRW 로터스 프리랜스 이미지  
DRW Pro/E 드로잉  
DSC Description 파일  
DSC 오라클, 디스카드 파일  
DSF Micrografx, Designer v7.x  
DSF Delusion, Delusion 디지털 사운드 파일  
DSP 마이크로소프트 디벨롭퍼 스튜디오, 프로젝트 파일  
DSP 시그너춰, 디스플레이 매개변수들  
DSP 닥터 할로, 그래픽 디스플레이 드라이버  
DSW Borland C++ 4.5, 데스크탑 설정치  
DSW 마이크로소프트 디벨롭퍼 스튜디오, 작업공간 파일  
DWF Autodesk, 벡터 그래픽  
DWF 마이크로소프트 WHIP autoCAD reader, 도면 웹 파일  
DWG 오토캐드 파일  
DWT 드림위버 템플릿 파일  
DXF 도면 교환 (Drawing Interchange (eXchange)) 형식, 바이너리 DWG 형식의 텍스트 표현  
DXR 디렉터 무비 파일 (편집불가)  

EMF Enhanced Windows Metafile  
EML 마이크로소프트 아웃룩 익스프레스, 메일 메시지 파일 (MIME RFC 822)  
ENC Lotus 1-2-3 - uuencode, Encoded file - UUENCODEd 파일  
ENC Encore, 음악 파일  
ENV WOPR, Enveloper Macro  
ENV Microsoft WordPerfect for Windows, 환경 파일  
EPS 캡슐화된 포스트스크립트 이미지  
ERX ERWin 파일  
ESP 포스트스크립트 프린터를 위해 설계된 정보를 담고 있는 파일들  
EVT 이벤트 로그 (마이크로소프트 윈도우NT, 2000)  
EXE 실행 파일  
EXP 저장된 대화 (ICQ에서)  
EXT WS_FTP PRO, ASCII 이진전송 파일  

F FORTRAN 파일  
F FREEZE 압축파일 아카이브  
FCD 가상 CD-ROM 파일  
FCD FastCAD/EasyCAD 출력 파일  
FFA 마이크로소프트 find fast 파일  
FLA 플래시 무비 파일  
FLI 오토데스크의 FLIC 애니메이션  
FLM 오토캐드, 필름 롤  
FNT 이야기97용 글꼴 파일  
FON 시스템 글꼴 파일  
FOR FORTRAN 소스코드  
FRM 폼(form) 파일  
FXR WinFax 수신문서 (TIFF 형식)  

G APPLAUSE, 데이터 차트  
G723 가공하지 않은 CCITT G.723 3 또는 5 비트 ADPCM 형식의 데이터  
GAL 이야기, 갈무리 파일  
GDB 영산정보통신 GVA 및 GVA2000, 압축된 강의 파일  
GDB InterBase 데이터베이스 파일  
GID 윈도우95 글로벌 인덱스  
GIF 컴퓨서브 그래픽 파일  
GSP Gnuzip, Zip 파일  
GUL 훈민정음 파일  
GZ 유닉스 gzip 압축 파일  

H C 프로그램 헤더 파일  
HDR 한그림97, 그림 파일  
HDR Pc-File+, 데이터베이스 헤더 파일  
HDR Egret, 데이터 파일  
HDR ProComm Plus, 메시지 헤더 텍스트  
HDR 1st Reader, 메시지 헤더 텍스트  
HFT 아래아한글 글꼴 파일  
HGL HP Graphics Language, 도면 파일  
HHP ProComm Plus, 원격 사용자들을 위한 도움말 정보  
HLP 도움말 파일  
HNT 힌트 파일. 게임 등에서 자주 사용된다.  
HP THOR 데이터베이스, 제1 해시 파일  
HP HP/GL, HP 프린터 또는 플로터 출력용 프린트 파일  
HTA 시스템 레지스트리를 갱신하게 위해 바이러스에 의해 사용되는 HTML 파일  
HTM 하이퍼텍스트 문서  
HTML 하이퍼텍스트 문서  
HTX 확장 HTML, 템플릿 파일  
HWD Hollywood, 프레젠테이션  
HWP 아래아한글 파일  
HWT 아래아한글 서식 파일  

ICM Image Color Matching 프로필  
ICN 아이콘 소스코드  
ICO 아이콘 파일  
IDX Outlook Express 4, 메일 저장 파일  
IFF Interchange file, (Amiga ILBM)  
IFF Image (Sun TAAC/SDSC Image Tool)  
IMG GEM, 이미지 파일  
IMG Ventura Publisher, 비트맵 그래픽 파일  
INC Include 파일 (어셈블러 언어 또는 Active Server)  
INF 설치정보 파일  
INI 초기화 파일, 환경설정 파일  
ISO ISO 9660 CD-ROM 파일시스템 표준에 기반을 둔, CD-ROM 상의 파일 목록  

JAR 자바 아카이브 (애플릿이나 관련 파일들을 위한 압축 파일)  
JAVA 자바 소스코드  
JNB Sigma Plot 5, Workbook 파일  
JPE  JPEG 이미지  
JPEG  JPEG 비트맵 그래픽 파일  
JPG JPEG 비트맵 그래픽 파일  
JS 자바스크립트 소스 파일  

LAN NetWare, Loadable module (LAN DLL)  
LBM 비트맵 (DeluxePaint)  
LBM Linear Bitmap graphics (XLib)  
LHA LZH 파일의 또다른 확장자명  
LIB 라이브러리  
LNK 윈도우 바로가기 파일  
LOG 로그 파일  
LZH LH ARC 압축 파일  

M3U MPEG URL (MIME 오디오 파일) (MP3 재생 목록)  
MAC 이미지 (MacPaint)  
MAK 비주얼 베이직 또는 비주얼 C++ 프로젝트 파일  
MAX Kinetix 3D Studio Max, 3D 장면  
MAX Paperport, 문서 파일  
MAX OrCad, 레이아웃 파일  
MAX MAX, 소스코드  
MBX Outlook Express 4, 메일 저장 파일  
MCC MathCad, 구성 파일  
MCD MathCad, 문서 파일  
MCF MathCad, 글꼴 파일  
MCP Metrowerks CodeWarrior 프로젝트 파일  
MCP Capsule 애플리케이션 스크립트  
MCP Mathcad 프린터 드라이버  
MDB 마이크로소프트 액세스 데이터베이스  
MDL CA-Compete!, 스프레드시트  
MDL Digital Trakker, 음악 모듈  
MDL 3D Design Plus, 모델  
MDL Quake, 모델 파일  
MDL Rational Rose, 모델 파일 요소  
MHT MHTML 문서 (마이크로소프트)  
MHTM MHTML 문서 (MIME)  
MHTML MHTML 문서 (MIME)  
MI Cocreate ME10 데이터 파일  
MI 잡다한(Miscellaneous) 파일들의 일반적인 총칭  
MID 미디 음악 파일  
MIX Power C, 오브젝트 파일  
MIX 마이크로소프트 PhotoDraw 2000, 그림 파일  
MIX 마이크로소프트 Picture-It!, 그림 파일  
MIX Command & Conquer, 패키지 파일  
MIX Westwood Studios, 리소스 아카이브  
MMP MindMapor, MindManager 파일  
MMP Bravado, MMP 출력 비디오  
MOV QuickTime for Windows 무비 파일  
MP2 MPEG Audio Layer 2 파일 (MIME 비디오 파일)  
MP3 MPEG Audio Layer 3 로 압축된 음악 파일  
MPEG MPEG 동영상 파일  
MPF MP3 Folders, 폴더 파일  
MPG MPEG 동영상 파일  
MPP 마이크로소프트 프로젝트, 프로젝트 파일  
MPP CAD 도면 파일  
MSG 마이크로소프트, 전자우편 메시지  
MSI 마이크로소프트 윈도우 인스톨러 패키지  

NIL Norton, 아이콘 라이브러리 파일  
NOD Netobject Fusion, 파일  

OBD 마이크로소프트 오피스, 바인더  
OBZ 마이크로소프트 오피스, 바인더 마법사  
OCX 마이크로소프트 OLE custom control  
OFT 마이크로소프트 아웃룩, 서식 파일  
OLD 백업 파일 들의 일반적인 총칭  
OR3 로터스 오거나이저 97 파일  
OVL 오버레이 파일  
OVR 오버레이 파일  

P7M S/MIME, 암호화와 서명, 불명료한 서명이나 일반적인 서명된 문서  
PAB 마이크로소프트, 개인 주소록  
PAS 볼랜드 파스칼, 소스코드 파일  
PBR 파워빌더 자원 파일  
PCD 코닥 Photo-CD 이미지  
PCL HP 프린터 제어 언어 파일  
PCO Pro*COBOL, 원시파일  
PCT 매킨토시 PICT drawing  
PCX ZSoft PC 페인트브로쉬 비트맵 파일  
PDF 어도비 애크로뱃 문서 형식 (Portable Document Format)  
PGP Pretty Good Privacy, 암호화된 파일  
PHP PHP 스크립트가 들어있는 HTML 페이지  
PHP3 PHP 스크립트가 들어있는 HTML 페이지  
PHTML PHP 스크립트가 들어있는 HTML 페이지  
PIC PC Paint 비트맵  
PIC Lotus picture  
PIC 매킨토시 PICT drawing  
PICT 매킨토시 PICT 이미지 파일  
PIF 프로그램 정보 파일(Program Information File)  
PKG P-CAD, 데이터베이스  
PL Perl 프로그램  
PLT HPGL Plotter, 도면 파일  
PLT AutoCAD, 플롯 도면  
PLT (일반적으로) 팔레트 파일  
PM4 페이지메이커 4.0 문서 파일  
PNG Portable Network Graphics 비트맵 그래픽 파일  
POT 마이크로소프트 파워포인트 서식 파일  
PPD Adobe Acrobat v.4.0, 포스트스크립트 프린터 정의 파일 규격  
PPS 마이크로소프트 파워포인트 슬라이드 쇼  
PPS Personal Producer 스토리 보드  
PPT 마이크로소프트 파워포인트 파일  
PRF 마이크로소프트 윈도우, 시스템 파일  
PRF 매크로미디어 디렉터, 설정 파일  
PRF Improces-Fastgraph, Pixel Run 형식 그래픽  
PRF dBase IV, 프린터 드라이버  
PRF Profiler, 출력 파일  
PRN 프린트 테이블 (빈칸으로 구분된 텍스트)  
PRN 데이터 캐드, 윈도우 프린터 파일  
PRN 시그너처, 프린터 드라이버  
PRN 로터스123 심포니, 텍스트 파일  
PRZ 로터스 프리랜스97, 그래픽 파일  
PS 포스트스크립트 형식의 출력용 파일  
PSD 어도비 포토샵 비트맵 파일  
PSP 페인트샵 프로 이미지 파일  
PST 마이크로소프트 아웃룩, 개인 폴더 파일  
PWL 윈도우95/98 패스워드 목록 파일  
PXR Pixar, Pixar 이미지 형식  

QRP Centura, 보고서 작성자 파일  

RA 리얼오디오 소리 파일  
RAM 리얼오디오 메타 파일  
RAR RAR 압축 파일  
RAW Raw File Format (비트맵)  
RBF Rbase, 데이터 파일  
RC 마이크로소프트 C/C++, 리소스 스크립트  
RC Borland C++, 리소스 스크립트  
RC emacs, 구성 파일  
REG 윈도우 레지스트리 파일  
RES 마이크로소프트 Visual C++, 리소스 파일  
RLE Run-Length Encoded bitmap  
RM 리얼오디오 비디오 파일  
RMI MIDI 음악 파일  
ROL FM 음악 Adlib 음악파일 (Roland)  
ROM 카트리지 기반의 홈 비디오 게임 에뮬레이터 파일  
RPM 레드햇 리눅스의 패키지 매니저 파일  
RPT 크리스탈 리포트 파일 (및 마이크로소프트 비주얼베이직의 서브셋)  
RTF Rich Text Format 문서  

S3M Scream Tracker v 3.0, 16 채널 음악 파일  
SAV 저장된 게임 파일 (일반 명칭)  
SBD Storyboard Editor, 스토리보드 데이터 파일  
SBD Superbase, 데이터 정의 파일  
SBL Shockwave 플래시 오브젝트  
SCC 마이크로소프트, 소스 세이프 파일  
SCR 화면보호기 파일  
SD2 SAS 데이터베이스 (윈도우95/NT OS/2, 매킨토시)  
SEA 자체적으로 압축이 풀리는 아카이브 파일 (매킨토시 파일들을 위해 Stuffit에서 사용됨)  
SFX RAR 자체-풀림 아카이브  
SGML Standard Generalized Markup Language 파일  
SHTML Server Side Includes (SSI)가 포함되어 있는 HTML 파일  
SH3 하바드 그래픽스 프레젠테이션 파일  
SIT Stuffit, 압축된 매킨토시 아카이브 파일  
SND NeXT, 사운드 파일  
SND 매킨토시, 사운드 리소스 파일  
SNM 넷스케이프, 메일 폴더 인덱스  
SPI Siemens Scanner, 그래픽 파일  
SPI Phillips Scanner, 그래픽 파일  
STY 아래아한글 스타일 파일  
SWA Macromedia Director, 쇽웨이브 오디오 파일  
SWF 쇽웨이브 플래시 객체  
SYD QEMM, 기동 파일 백업  
SYS 시스템 파일  

TAR 테이프 아카이브  
TBL Pagemaker TableEditor, 그래픽 형식  
TBL OS/2, 표 형식의 값들  
TEL 이야기97용 전화걸기 정보 파일  
TGA Targa 비트맵  
TGZ 유닉스 Gzip/테이프 아카이브  
TIF Tag Image File Format 비트맵 파일  
TIFF Tag Image File Format 비트맵 파일  
TLB 마이크로소프트 OLE type 라이브러리 파일  
TLB 버블 에디터 참고 테이블  
TLB VAX 텍스트 라이브러리  
TLB 비주얼 C++ Type 라이브러리  
TMP 윈도우 임시 파일  
TRM 윈도우 터미널 파일  
TRX I-Cite, 익스포트 파일  
TSD trueSpace 4, 데모 파일  
TSM OS/2용 Turbo Assembler, 설명서 파일  
TTC 트루타입 컬렉션 파일  
TTF 트루타입 글꼴  
TXT 아스키 텍스트  
TZZ 탑정보통신 밤톨이 압축파일 (분할 압축시 두번째 파일부터는 002, 003 ... 등 숫자가 사용됨)  

URL 인터넷 바로가기 파일  
UU UU-encode된 파일  
UUE UU-encode된 파일  

VBP 비주얼베이직, 프로젝트  
VBR 비주얼베이직, Remote automated registration 파일  
VBS 비주얼베이직, 스크립트 파일  
VBW 비주얼베이직, Workspace 파일  
VBX 비주얼베이직, custom control 파일  
VCF 넷스케이프, 가상 카드 파일  
VCT 마이크로소프트 폭스프로(FoxPro) 클래스 라이브러리  
VCX 마이크로소프트 폭스프로(FoxPro) 클래스 라이브러리  
VOB Digital Video Disk, 현재 DVD에서 사용되는 암호화된 비디오 및 오디오 파일들  
VOC 크리에이티브 랩스 사운드 블라스터 오디오 파일  
VOC Quartet 오디오 파일  
VQE 야마하 사운드 VQ Locator 파일  
VQF 야마하 사운드 VQ 파일 (새로운 표준이 될 가능성이 있는 후보)  
VQL 야마하 사운드 VQ Locator 파일  
VRML VRML 파일  
VSD 비지오 드로잉 파일  
VSS 비지오 스텐실 파일  
VUE dBase IV 뷰 파일  
VUE 마이크로소프트 폭스프로 뷰 파일  
VXD 마이크로소프트 가상 장치 드라이버  

W44 dBase 임시 파일  
WAV 윈도우 웨이브 파일  
WCM WordPerfect 매크로  
WEJ 나모 웹에디터, 프로젝트 파일  
WFX 윈도우 팩스 파일  
WKS Microsoft Works, 문서  
WMA 마이크로소프트 Windows Media 오디오 파일 (ASF 형식으로 변경 가능)  
WMF 윈도우 메타 파일  
WP4 WordPerfect 4 문서  
WP5 WordPerfect 5 문서  
WP6 WordPerfect 6 문서  
WPD WordPerfect 문서  
WPG WordPerfect 그래픽  
WPS Microsoft Works, 텍스트 문서  
WPT WordPerfect 템플릿  
WRL 가상현실 모델  
WQ1 쿼트로프로/DOS용 스프레드시트  
WQ2 쿼트로프로/버전5 스프레드시트  
WSD WordStar, 문서파일  
WSF Windows 스크립트 파일  
WSP Fortran PowerStation, WorkSpace file  
WSZ WinAmp, 스킨파일  

XLC 마이크로소프트 엑셀 차트  
XLM 마이크로소프트 매크로 파일  
XLS 마이크로소프트 엑셀 파일  
XLT 마이크로소프트 엑셀 서식 파일  
XML eXtensible Markup Language 파일  
XY XYWrite, 텍스트 파일  

YAL Arts & Letters 클립아트 라이브러리  

ZIP Zip 압축 파일  
ZOO Zoo, 초창기의 압축 파일 형식  

123 로터스 1-2-3 파일