자료

embed 태그

자유지향 2009. 8. 21. 21:57

embed 태그의 사용

동영상, 음악, 플래쉬 파일 (mp3, asf, wma, wmv, swf 등 동영상 관련 파일 등)등을 문서에 끼워 넣(embedding)을 때 사용하는 tag 입니다.

많이 쓰이는 확장자와 타입명
mp3 audio/mpeg
wma audio/x-ms-wma
wmv video/x-ms-wmv
asf video/x-ms-asf
avi video/x-msvideo
swf application/x-shockwave-flash

asx application/x-mplayer2

 

클래식 기타 선율
01. 어메이징 그레이스
02. 라쿠카라차
03. 사랑의 기쁨
04. 자니기타
05. 수잔나
06. 그린 슬리브스
07. 추억의 소렌자라
08. 검은 상처의 블루스
09. 스카보로 페어
10. 왓 타임 월츠
11. 러브 스토리
12. 대니보이

 

볼륨 조정

 



<EMBED style="FILTER: gray(); WIDTH: 400px; HEIGHT: 69px" height=45 type=audio/x-ms-wma src="음악주소" invokeURLs="false" autostart="false" x-x-allowscriptaccess="never" invokeURLS="false" enablecontextmenu="0" LOOP="-1" volume="0" showstatusbar="true" showControls="true">



autostart의 값이 다른, 같은 음악의 두 플레이어의 동작을 비교 해 보세요. 볼륨 조정 ! ^^

그리고 그 아래는 소스입니다. 실제로 이만큼 복잡하게 나열할 필요는 없으나 태그 속성을 설명하기 위하여 조금 복잡하게 만들었습니다. 위 소스를 참고 하여 아래를 설명하였으니 내려 보면서 위에 있는 소스와 비교하여 보시면 됩니다.


음악 명령어(태그)의 속성

음악 태그의 속성에는 일반적으로 두가지의 값을 사용합니다.
그 두가지 값이란 true(참)false(거짓)인데 1 과 0 으로 대체 하기도 합니다.


먼저 위의 소스내에 있는 명령어를 설명하여 보겠습니다.

1. invokeURLs=false : 미디어 파일의 주소(URL) 타입의 값이 true(참)이면 호출하고 false(거짓)이면 호출하지 않게 됩니다 . 즉 URL을 윈도우 미디어 플레이어에 보내면 자동으로 인식하여 스크립트 명령을 브라우저에 미디어 파일의 주소를 호출 할지 말지를 체크하는 것입니다.

2. autostart : 문서 즉 페이지가 열리는 동시에 음악이 연주 될지를 결정합니다. 1이나 true면 자동으로 스타트 됩니다. 반대로 false를 하게 되면 플레이 버턴을 눌러야 실행이 되겠지요.
(한 개의 플레이어에 여러 곡이 실려 있는 경우는 언제나 autostart가 되어야 합니다. 그렇게 하지 않으면 버턴을 눌러 실행하면 한 곡 씩만 실행됩니다. 다음 곡을 들으려면 또 눌러야 합니다.따라서 autostart 이면서 소리가 없이 조용하게, volume 값을 낮추어 시작 되게 하면, 소리를 조정 한 후 전곡을 연속으로 들을 수 있게 됩니다.

이것은 특히 한 페이지에 여러개의 플레이어를 탑재하게 되는 경우 필요한 사항입니다.)

 

3. x-x-allowscriptaccess : 동영상을 실행할때 여기에 스크립트로 제어문들을 넣을 수 있는 속성인데 솔직히 별로 쓰이지 않는 것이라 잘 모르겠습니다.

4. style="FILTER :
대개 gray() alpha() 값을 이용해 플레이어의 색상이나 투명도를 설정합니다. 아래에 예를 들어 만들어 둔 플레이어들을 보시면 쉽게 이해가 됩니다.

5. WIDTH : 플레이어의 가로 폭을 결정해 줍니다.

6. HEIGHT : 플레이어의 세로 높이를 결정해 줍니다.

7. src : 올리고자 하는 파일의 URL(주소)을 입력하면 됩니다.

8. hidden : 미디어 플레이어를 보여줄 것인지 숨길 것인지르 결정합니다. true값을 넣으면 플레이어는 보이지 않고 음악만 들리게 됩니다. 반대로 flase를 넣어면 미디어 플레이어가 보이면서 음악이 들리게 되겠지요.

9. type : 이것은 반드시 써 주어야 하는 것은 아닙니다. 동영상을 실행할때 여기에 스크립트로 제어문들을 넣을 수 있습니다.  시간이나 새 창 등입니다.  type=video/x-ms-wma는 플러그인의 형식을 나타내는 것입니다. 이건 비디오 형식이고 ms사의 vma라는 뜻입니다. 리얼오디오 파일의 경우는 type="x-pn-realaudio-plugin" 이렇게 합니다.

10. enablecontextmenu : 마우스 우측 복사 금지. 이 값에 의해 멀티미디어 파일 주소보기를 숨깁니다.

11. LOOP : 음악의 들리기 반복 횟수를 지정합니다. loop=true , loop= -1, loop=infinity  이 3가지는 모두 무한 반복을 지정합니다. 이 소스를 아예 넣지않으면 1회 재생 후 멈추게 됩니다. 2를 써 넣으면 2번 반복되고 멈추겠지요.

12. volume : 소리의 크기를 조절 합니다. 볼륨의 값은 -10000 부터 0 까지, 0 이 최대입니다. 기본 값은 -6000 입니다. 또한 balance라는 값을 통해서 왼쪽과 오른쪽의 스테레오에 대한 값을 줄 수 있습니다. -10000 이면 최대 왼쪽이고 10000 이면 최대 오른쪽 입니다.

13. showControls : 플레이어의 형태를 지정하는 여러 옵션을 정한는 것입니다. 예를 들면 다음과 같은 것들이 있습니다.
 
showcontrols=false : 컨트럴 바 숨김
showstatusbar=true : 상태바 보임
showaudiocontrols=false : 볼륨 컨트럴 바 숨김
showpositioncontrols=false : 이전 다음곡 버튼 감추기
showtracker=false :  트랙바 감추기


위의 속성들에 대하여 복잡하게 적어 놓으니 아마 조금 헷갈리는 분도 있을 것입니다.
이제 위와 같이 복잡한 것 치우고 일상적으로 우리가 사용하는 일반적인 방법으로 간단히 요약하여 보겠습니다.


소스1: 미디어 플레이어가 보이면서 자동 연속 듣기
<embed src="음악 주소" volume="0" loop="-1" showstatusbar="true">

소스2: 미디어 플레이가 보이면서 재생 버턴을 눌러야 재생 되면서 연속듣기
<embed src="음악 주소" volume="0" loop="-1" showstatusbar="true" autostart="false">

소스3: 미디어 플레이어가 안 보이면서 자동으로 연속듣기
<embed src="음악주소" loop="-1" hidden=true autostart=true>

소스4: 미디어 플레이가 안 보이면서 자동 1회만 플레이
<embed src="음악 주소" loop="1" hidden=true autostart=true>


미디어 플레이어의 다양한 꾸미기

1. 미디어 플레이어의 색깔을 회색으로 할려면,
<embed src="음악주소" style="FILTER:gray" volume="0">

x-text/html; charset=iso-8859-1" src=1.wma showControls="true" LOOP="0" autostart="true">

2. 검은색 플레이어로 바꾸고 싶다면 FILTER:gray 를 FILTER:xray 로 하여 주면 됩니다.
<embed src="음악주소" style="FILTER:xray" volume="0">

x-text/html; charset=iso-8859-1" src=1.wma showControls="true" LOOP="0" autostart="true">

3. 미디어 플레이어의 일부 버턴만 보이게 할려면 가로폭(width)을 조정하면 됩니다.
x-text/html; charset=iso-8859-1" src=1.wma showControls="true" LOOP="0" autostart="true">       x-text/html; charset=iso-8859-1" src=1.wma showControls="true" LOOP="0" autostart="true">        x-text/html; charset=iso-8859-1" src=1.wma showControls="true" LOOP="0" autostart="true">
width=67           width=100                 width=145

5. 몇가지 버턴만 보이게 하기(재생, 정지, 음소거, 볼륨만 보이게)
<embed src="음악 주소" invokeURLs="false" width=178px; height=45px" ShowPositionControls="False" volume="0">
x-text/html; charset=iso-8859-1" height=45 width=178 src=1.wma invokeURLs="false" ShowPositionControls="False" volume="0">

6. 곡 정보를 나타나게 하기
<embed src="음악주소" showstatusbar="true" volume="0">
x-text/html; charset=iso-8859-1" height=45 width=300 src=1.wma AutoStart="-1" PlayCount="0">

 

짧은 미디어 플레이어 형태와 소스

<EMBED style="FILTER: alpha(opacity=100 Style=2 FinishOpacity=0)" src="음악주소" width=70 height=26 type=audio/x-ms-wma Autostart="0" volume="0" LOOP="1" enablecontextmenu="0" x-x-allowscriptaccess="naver" invokeURLs="false">

<EMBED style="FILTER: alpha(opacity=100 Style=3 FinishOpacity=0)" src="음악주소" width=70 height=26 type=audio/x-ms-wma Autostart="0" volume="0" LOOP="1" enablecontextmenu="0" x-x-allowscriptaccess="naver" invokeURLs="false">
<EMBED style="FILTER: alpha(opacity=100 Style=1 FinishOpacity=0)" src="음악주소" width=70 height=26 type=audio/x-ms-wma Autostart="0" volume="0" LOOP="1" enablecontextmenu="0" x-x-allowscriptaccess="naver" invokeURLs="false">
<EMBED style="FILTER: alpha(opacity=5 Style=1 FinishOpacity=100)" src="음악주소" width=70 height=26 type=audio/x-ms-wma Autostart="0" volume="0" LOOP="1" enablecontextmenu="0" x-x-allowscriptaccess="naver" invokeURLs="false">
<EMBED style="FILTER: alpha(opacity=50)" src="음악주소" width=70 height=26 type=audio/x-ms-wma Autostart="0" volume="0" LOOP="1" enablecontextmenu="0" x-x-allowscriptaccess="naver" invokeURLs="false">
<EMBED style="FILTER: gray()alpha(opacity=100 Style=2 FinishOpacity=0)" src="음악주소" width=70 height=26 type=audio/x-ms-wma invokeURLs="false" x-x-allowscriptaccess="naver" enablecontextmenu="0" LOOP="1" volume="0" Autostart="0">
<EMBED style="FILTER: xray()alpha(opacity=100 Style=2 FinishOpacity=0)" src="음악주소" width=70 height=26 type=audio/x-ms-wma invokeURLs="false" x-x-allowscriptaccess="naver" enablecontextmenu="0" LOOP="1" volume="0" Autostart="0">
<EMBED style="FILTER: invert()alpha(opacity=100 Style=2 FinishOpacity=0)" src="음악주소" width=70 height=26 type=audio/x-ms-wma Autostart="1" volume="0" LOOP="1" enablecontextmenu="0" x-x-allowscriptaccess="naver" invokeURLs="false">
<Embed src="음악주소" style="filter: alpha(opacity=100 style=2 finishopacity=0)Blue()"  width=70 height=26 autostart="1" x-x-allowscriptaccess="Never" type=audio/x-ms-wma showControls="1" playCount="0" volume="0" LOOP="0" enablecontextmenu="0" invokeURLs="0">
<EMBED src="음악주소" width=160 height=26 type="text/plain; charset=EUC-KR" PlayCount="0" Volume="0" Showtracker="0" ShowPositionControls="0" x-x-allowscriptaccess="never" EnableContextMenu="0" autostart="1" invokeURLs="false"></EMBED>
<EMBED style="FILTER: gray()" src="음악주소" width=160 height=26 type="text/plain; charset=EUC-KR" PlayCount="0" Volume="0" Showtracker="0" ShowPositionControls="0" x-x-allowscriptaccess="never" EnableContextMenu="0" autostart="1" invokeURLs="false"></EMBED>
<EMBED style="FILTER: xray()" src="음악주소" width=160 height=26 type="text/plain; charset=EUC-KR" PlayCount="0" Volume="0" Showtracker="0" ShowPositionControls="0" x-x-allowscriptaccess="never" EnableContextMenu="0" autostart="1" invokeURLs="false"></EMBED>
<EMBED style="FILTER: alpha(opacity=100 Style=1 FinishOpacity=100) invert()" src="음악주소" width=160 height=26 type="text/plain; charset=EUC-KR" PlayCount="0" Volume="0" Showtracker="0" ShowPositionControls="0" x-x-allowscriptaccess="never" EnableContextMenu="0" autostart="1" invokeURLs="false"></EMBED>
<EMBED src="음악주소" width=160 height=45 type="text/plain; charset=EUC-KR" PlayCount="0" volume="1" ShowPositionControls="0" x-x-allowscriptaccess="never" EnableContextMenu="0" autostart="1" invokeURLs="false"></EMBED>
<EMBED style="FILTER: gray()" src="음악주소" width=160 height=45 type="text/plain; charset=EUC-KR" PlayCount="0" volume="1" ShowPositionControls="0" x-x-allowscriptaccess="never" EnableContextMenu="0" autostart="1" invokeURLs="false"></EMBED>
<EMBED style="FILTER: xray()" src="음악주소" width=160 height=45 type="text/plain; charset=EUC-KR" PlayCount="0" volume="1" ShowPositionControls="0" x-x-allowscriptaccess="never" EnableContextMenu="0" autostart="1" invokeURLs="false"></EMBED>
<EMBED style="FILTER: alpha(opacity=100 Style=1 FinishOpacity=100) invert()" src="음악주소" width=160 height=45 type="text/plain; charset=EUC-KR" PlayCount="0" volume="1" ShowPositionControls="0" x-x-allowscriptaccess="never" EnableContextMenu="0" autostart="1" invokeURLs="false"></EMBED>
x-text/html; charset=iso-8859-1" height=26 width=160 src=1.wma PlayCount="0" AutoStart="1" x-x-allowscriptaccess="never" showstatusbar="0" showgotobar="0" EnableContextMenu="0" Volume="0" ShowPositionControls="0"> <FONT style="BACKGROUND-COLOR: #ff3300"><EMBED style="FILTER: gray()alpha(opacity=35,style=1,finishopacity=35)" src="음악주소" width=160 height=26 PlayCount="0" AutoStart="1" x-x-allowscriptaccess="never" showstatusbar="0" showgotobar="0" EnableContextMenu="0" Volume="0" ShowPositionControls="0"></FONT>
x-text/html; charset=iso-8859-1" height=26 width=160 src=1.wma PlayCount="0" AutoStart="1" x-x-allowscriptaccess="never" showstatusbar="0" showgotobar="0" EnableContextMenu="0" Volume="0" ShowPositionControls="0"> <FONT style="BACKGROUND-COLOR: #00cc00"><EMBED style="FILTER: gray()alpha(opacity=35,style=1,finishopacity=35)" src="음악주소" width=160 height=26 PlayCount="0" AutoStart="1" x-x-allowscriptaccess="never" showstatusbar="0" showgotobar="0" EnableContextMenu="0" Volume="0" ShowPositionControls="0"></FONT>
x-text/html; charset=iso-8859-1" height=26 width=160 src=1.wma PlayCount="0" AutoStart="1" x-x-allowscriptaccess="never" showstatusbar="0" showgotobar="0" EnableContextMenu="0" Volume="0" ShowPositionControls="0"> <FONT style="BACKGROUND-COLOR: #0000cc"><EMBED style="FILTER: gray()alpha(opacity=35,style=1,finishopacity=35)" src="음악주소" width=160 height=26 ShowPositionControls="0" Volume="0" EnableContextMenu="0" showgotobar="0" showstatusbar="0" x-x-allowscriptaccess="never" AutoStart="1" PlayCount="0"></FONT>
x-text/html; charset=iso-8859-1" height=45 width=70 src=1.wma PlayCount="0" Volume="0" AutoStart="1" x-x-allowscriptaccess="never" EnableContextMenu="0" invokeURLs="false">
<EMBED src="음악주소" width=70 height=45 PlayCount="0" Volume="0" AutoStart="1" x-x-allowscriptaccess="never" EnableContextMenu="0" invokeURLs="false"></EMBED>
x-text/html; charset=iso-8859-1" height=45 width=70 src=1.wma PlayCount="0" Volume="0" AutoStart="1" x-x-allowscriptaccess="never" EnableContextMenu="0" invokeURLs="false">
<EMBED style="FILTER: gray()" src="음악주소" width=70 height=45 PlayCount="0" Volume="0" AutoStart="1" x-x-allowscriptaccess="never" EnableContextMenu="0" invokeURLs="false"></EMBED>
x-text/html; charset=iso-8859-1" height=45 width=70 src=1.wma invokeURLs="false" EnableContextMenu="0" x-x-allowscriptaccess="never" AutoStart="1" Volume="0" PlayCount="0">
<EMBED style="FILTER: xray()" src="음악주소" width=70 height=45 PlayCount="0" Volume="0" AutoStart="1" x-x-allowscriptaccess="never" EnableContextMenu="0" invokeURLs="false"></EMBED>
x-text/html; charset=iso-8859-1" height=45 width=70 src=1.wma invokeURLs="false" EnableContextMenu="0" x-x-allowscriptaccess="never" AutoStart="1" Volume="0" PlayCount="0">
<EMBED style="FILTER: alpha(opacity=100 Style=1 FinishOpacity=100) invert()" src="음악주소" width=70 height=45 PlayCount="0" Volume="0" AutoStart="1" x-x-allowscriptaccess="never" EnableContextMenu="0" invokeURLs="false"></EMBED>
x-text/html; charset=iso-8859-1" height=26 width=70 src=1.wma invokeURLs="false" EnableContextMenu="0" x-x-allowscriptaccess="never" AutoStart="1" Volume="0" PlayCount="0" Showtracker="0">
<EMBED src="음악주소" width=70 height=26 Showtracker="0" PlayCount="0" Volume="0" AutoStart="1" x-x-allowscriptaccess="never" EnableContextMenu="0" invokeURLs="false"></EMBED>
x-text/html; charset=iso-8859-1" height=26 width=70 src=1.wma invokeURLs="false" EnableContextMenu="0" x-x-allowscriptaccess="never" AutoStart="1" Volume="0" PlayCount="0" Showtracker="0">
<EMBED style="FILTER: gray()" src="음악주소" width=70 height=26 Showtracker="0" PlayCount="0" Volume="0" AutoStart="1" x-x-allowscriptaccess="never" EnableContextMenu="0" invokeURLs="false"></EMBED>
x-text/html; charset=iso-8859-1" height=26 width=70 src=1.wma invokeURLs="false" EnableContextMenu="0" x-x-allowscriptaccess="never" AutoStart="1" Volume="0" PlayCount="0" Showtracker="0">
<EMBED style="FILTER: xray()" src="음악주소" width=70 height=26 Showtracker="0" PlayCount="0" Volume="0" AutoStart="1" x-x-allowscriptaccess="never" EnableContextMenu="0" invokeURLs="false"></EMBED>
x-text/html; charset=iso-8859-1" height=26 width=70 src=1.wma Showtracker="0" PlayCount="0" Volume="0" AutoStart="1" x-x-allowscriptaccess="never" EnableContextMenu="0" invokeURLs="false">
<EMBED style="FILTER: alpha(opacity=100 Style=1 FinishOpacity=100) invert()" src="음악주소" width=70 height=26 Showtracker="0" PlayCount="0" Volume="0" AutoStart="1" x-x-allowscriptaccess="never" EnableContextMenu="0" invokeURLs="false"></EMBED>

 

긴 미디어 플레이어 형태와 소스

<EMBED src="음악주소" width=300 height=45 PlayCount="0" AutoStart="0" x-x-allowscriptaccess="never" Showstatusbar="0" Showgotobar="0" EnableControls="0" Vloume="0" ShowpositionControls="0">

x-text/html; charset=iso-8859-1" height=45 width=300 src=1.wma ShowpositionControls="0" Vloume="0" EnableControls="0" Showgotobar="0" Showstatusbar="0" x-x-allowscriptaccess="never" AutoStart="1" PlayCount="0">

<EMBED style="FILTER: gray()" src="음악주소" width=300 height=45 PlayCount="0" AutoStart="0" x-x-allowscriptaccess="never" Showstatusbar="0" Showgotobar="0" EnableControls="0" Vloume="0" ShowpositionControls="0">

x-text/html; charset=iso-8859-1" height=45 width=300 src=1.wma PlayCount="0" AutoStart="0" x-x-allowscriptaccess="never" Showstatusbar="0" Showgotobar="0" EnableControls="0" Vloume="0" ShowpositionControls="0">

<EMBED style="FILTER: xray()" src="음악주소" width=300 height=45 PlayCount="0" AutoStart="1" x-x-allowscriptaccess="never" Showstatusbar="0" Showgotobar="0" EnableControls="0" Vloume="0" ShowpositionControls="0">

x-text/html; charset=iso-8859-1" height=45 width=300 src=1.wma invokeURLs="false" Volume="0" EnableContextMenu="0" x-x-allowscriptaccess="never" AutoStart="1" PlayCount="0">
<EMBED style="FILTER: alpha(opacity=100 Style=1 FinishOpacity=100) invert()" src="음악주소" width=300 height=45 PlayCount="0" AutoStart="1" x-x-allowscriptaccess="never" EnableContextMenu="0" Volume="0" invokeURLs="false"></EMBED>

 

 

<EMBED style="FILTER: blur(add=1,direction=135,strength=20)" src="음악주소" width=300 height=45 type=audio/x-ms-wma autostart="0" volume='0"' x-x-allowscriptaccess="never"></EMBED>
<EMBED style="FILTER: progid:DXImageTransform.Microsoft.DropShadow(OffX=7,OffY=7,color=deepskyblue )" src="음악주소" width=300 height=45 type=audio/x-ms-wma autostart="0" volume='0"' x-x-allowscriptaccess="never"> </EMBED>
<EMBED style="FILTER: progid:DXImageTransform.Microsoft.Glow(color=red,Strength=5)" src="음악주소" width=300 height=45 type=audio/x-ms-wma autostart="0" volume='0"' x-x-allowscriptaccess="never"> </EMBED>
<EMBED src="음악주소" AutoStart=0 Loop=1 Volume=0 enablecontextmenu=0 Width=300 Height=45 Style="FILTER: alpha(opacity=50 Style=1 FinishOpacity=50), gray(), progid:DXImageTransform.Microsoft.emboss(), progid:DXImageTransform.Microsoft.dropshadow(color=green offX=1 offY=0 positive=flase);"></EMBED>
x-text/html; charset=iso-8859-1" height=45 width=300 src=1.wma PlayCount="0" AutoStart="1" x-x-allowscriptaccess="never" showstatusbar="0'" showgotobar="0" EnableContexMenu="0" Volume="0" ShowPositionControls="0">
<FONT style="BACKGROUND-COLOR: #ff3300"><EMBED style="FILTER: gray()alpha(opacity=35,style=1,finishopacity=35)" src="음악주소" width=300 height=45 PlayCount="0" AutoStart="1" x-x-allowscriptaccess="never" showstatusbar="0'" showgotobar="0" EnableContexMenu="0" Volume="0" ShowPositionControls="0"></FONT>
x-text/html; charset=iso-8859-1" height=45 width=300 src=1.wma PlayCount="0" AutoStart="1" x-x-allowscriptaccess="never" showstatusbar="0'" showgotobar="0" EnableContexMenu="0" Volume="0" ShowPositionControls="0">
<FONT style="BACKGROUND-COLOR: #ff6600"><EMBED style="FILTER: gray()alpha(opacity=35,style=1,finishopacity=35)" src="음악주소" width=300 height=45 ShowPositionControls="0" Volume="0" EnableContexMenu="0" showgotobar="0" showstatusbar="0'" x-x-allowscriptaccess="never" AutoStart="1" PlayCount="0"></FONT>
x-text/html; charset=iso-8859-1" height=45 width=300 src=1.wma PlayCount="0" AutoStart="1" x-x-allowscriptaccess="never" showstatusbar="0'" showgotobar="0" EnableContexMenu="0" Volume="0" ShowPositionControls="0">
x-text/html; charset=iso-8859-1" height=45 width=300 src=1.wma PlayCount="0" AutoStart="1" x-x-allowscriptaccess="never" showstatusbar="0'" showgotobar="0" EnableContexMenu="0" Volume="0" ShowPositionControls="0">
<FONT style="BACKGROUND-COLOR: #ffff00"><EMBED style="FILTER: gray()alpha(opacity=35,style=1,finishopacity=35)" src="음악주소" width=300 height=45 ShowPositionControls="0" Volume="0" EnableContexMenu="0" showgotobar="0" showstatusbar="0'" x-x-allowscriptaccess="never" AutoStart="1" PlayCount="0"> </FONT>
x-text/html; charset=iso-8859-1" height=45 width=300 src=1.wma PlayCount="0" AutoStart="1" x-x-allowscriptaccess="never" showstatusbar="0'" showgotobar="0" EnableContexMenu="0" Volume="0" ShowPositionControls="0">
<FONT style="BACKGROUND-COLOR: #00cc00"><EMBED style="FILTER: gray()alpha(opacity=35,style=1,finishopacity=35)" src="음악주소" width=300 height=45 ShowPositionControls="0" Volume="0" EnableContexMenu="0" showgotobar="0" showstatusbar="0'" x-x-allowscriptaccess="never" AutoStart="1" PlayCount="0"></FONT>
x-text/html; charset=iso-8859-1" height=45 width=300 src=1.wma ShowPositionControls="0" Volume="0" EnableContexMenu="0" showgotobar="0" showstatusbar="0'" x-x-allowscriptaccess="never" AutoStart="1" PlayCount="0">
<FONT style="BACKGROUND-COLOR: #0000cc"><EMBED style="FILTER: gray()alpha(opacity=35,style=1,finishopacity=35)" src="음악주소" width=300 height=45 PlayCount="0" AutoStart="1" x-x-allowscriptaccess="never" showstatusbar="0'" showgotobar="0" EnableContexMenu="0" Volume="0" ShowPositionControls="0"></FONT>
x-text/html; charset=iso-8859-1" height=45 width=300 src=1.wma PlayCount="0" AutoStart="1" x-x-allowscriptaccess="never" showstatusbar="0'" showgotobar="0" EnableContexMenu="0" Volume="0" ShowPositionControls="0">
<FONT style="BACKGROUND-COLOR: #000066"><EMBED style="FILTER: gray()alpha(opacity=35,style=1,finishopacity=35)" src="음악주소" width=300 height=45 ShowPositionControls="0" Volume="0" EnableContexMenu="0" showgotobar="0" showstatusbar="0'" x-x-allowscriptaccess="never" AutoStart="1" PlayCount="0"></FONT>
x-text/html; charset=iso-8859-1" height=45 width=300 src=1.wma ShowPositionControls="0" Volume="0" EnableContexMenu="0" showgotobar="0" showstatusbar="0'" x-x-allowscriptaccess="never" AutoStart="1" PlayCount="0">
<FONT style="BACKGROUND-COLOR: #660066"><EMBED style="FILTER: gray()alpha(opacity=35,style=1,finishopacity=35)" src="음악주소" width=300 height=45 PlayCount="0" AutoStart="1" x-x-allowscriptaccess="never" showstatusbar="0'" showgotobar="0" EnableContexMenu="0" Volume="0" ShowPositionControls="0"></FONT>
x-text/html; charset=iso-8859-1" height=26 width=300 src=1.wma invokeURLs="false" Volume="0" EnableContextMenu="0" x-x-allowscriptaccess="never" AutoStart="1" PlayCount="0" Showtracker="0">
<EMBED src="음악주소" width=300 height=26 Showtracker="0" PlayCount="0" AutoStart="1" x-x-allowscriptaccess="never" EnableContextMenu="0" Volume="0" invokeURLs="false"></EMBED>
x-text/html; charset=iso-8859-1" height=26 width=300 src=1.wma invokeURLs="false" Volume="0" EnableContextMenu="0" x-x-allowscriptaccess="never" AutoStart="1" PlayCount="0" Showtracker="0">
<EMBED style="FILTER: gray()" src="음악주소" width=300 height=26 invokeURLs="false" Volume="0" EnableContextMenu="0" x-x-allowscriptaccess="never" AutoStart="1" PlayCount="0" Showtracker="0"></EMBED>
x-text/html; charset=iso-8859-1" height=26 width=300 src=1.wma Showtracker="0" PlayCount="0" AutoStart="1" x-x-allowscriptaccess="never" EnableContextMenu="0" Volume="0" invokeURLs="false">
<EMBED style="FILTER: xray()" src="음악주소" width=300 height=26 Showtracker="0" PlayCount="0" AutoStart="1" x-x-allowscriptaccess="never" EnableContextMenu="0" Volume="0" invokeURLs="false"></EMBED>
x-text/html; charset=iso-8859-1" height=26 width=300 src=1.wma Showtracker="0" PlayCount="0" AutoStart="1" x-x-allowscriptaccess="never" EnableContextMenu="0" Volume="0" invokeURLs="false">
<EMBED style="FILTER: alpha(opacity=100 Style=1 FinishOpacity=100) invert()" src="음악주소" width=300 height=26 Showtracker="0" PlayCount="0" AutoStart="1" x-x-allowscriptaccess="never" EnableContextMenu="0" Volume="0" invokeURLs="false"></EMBED>
x-text/html; charset=iso-8859-1" height=25 width=300 src=https://t1.daumcdn.net/cafefile/pds42/5_cafe_2007_08_10_00_35_46bb3434e0734&.wma AutoStart="0" Loop="1" ShowControls="1" Volume="0" enablecontextmenu="0">
<EMBED src="음악주소" AutoStart=1 Loop=1 hidden=False ShowControls=1 Volume=0 enablecontextmenu=0 Width=300 Height=25 Style="FILTER: alpha(opacity=70 Style=1 FinishOpacity=70), xray(), progid:DXImageTransform.Microsoft.engrave(), progid:DXImageTransform.Microsoft.glow(color=orange strength=10), progid:DXImageTransform.Microsoft.dropshadow(color=orange offX=1 offY=0 positive=True);"></EMBED>
<EMBED src="음악주소" AutoStart=0 Loop=1 ShowControls=1 Volume=0 enablecontextmenu=0 Width=300 Height=25 Style="FILTER: alpha(opacity=70 Style=1 FinishOpacity=70), gray(), progid:DXImageTransform.Microsoft.dropshadow(color=aqua offX=1 offY=0 positive=true);"></EMBED>
x-text/html; charset=iso-8859-1" height=67 width=300 src=1.wma invokeURLs="false" ShowPositonControls="0" Volume="0" EnableContextMenu="0" showstatusbar="1" x-x-allowscriptaccess="never" AutoStart="1" PlayCount="0">
<EMBED src="음악주소" width=300 height=67 PlayCount="0" AutoStart="1" x-x-allowscriptaccess="never" showstatusbar="1" EnableContextMenu="0" Volume="0" ShowPositonControls="0" invokeURLs="false"></EMBED>
x-text/html; charset=iso-8859-1" height=67 width=300 src=1.wma invokeURLs="false" ShowPositonControls="0" Volume="1" EnableContextMenu="0" ShowStatusbar="1" x-x-allowscriptaccess="never" AutoStart="1" PlayCount="0">
<EMBED style="FILTER: gray()" src="음악주소" width=300 height=67 PlayCount="0" AutoStart="1" x-x-allowscriptaccess="never" ShowStatusbar="1" EnableContextMenu="0" Volume="1" ShowPositonControls="0" invokeURLs="false"></EMBED>
x-text/html; charset=iso-8859-1" height=67 width=300 src=1.wma invokeURLs="false" ShowPositonControls="0" Volume="0" EnableContextMenu="0" showstatusbar="1" x-x-allowscriptaccess="never" AutoStart="1" PlayCount="0">
<EMBED style="FITER: xray()" src="음악주소" width=300 height=67 PlayCount="0" AutoStart="1" x-x-allowscriptaccess="never" showstatusbar="1" EnableContextMenu="0" Volume="0" ShowPositonControls="0" invokeURLs="false"></EMBED>
x-text/html; charset=iso-8859-1" height=67 width=300 src=1.wma invokeURLs="false" ShowPositonControls="0" Volume="1" EnableContextMenu="0" ShowStatusbar="1" x-x-allowscriptaccess="never" AutoStart="1" PlayCount="0">
<EMBED style="FILTER: alpha(opacity=100 Style=1 FinishOpacity=100) invert()" src="음악주소" width=300 height=67 invokeURLs="false" ShowPositonControls="0" Volume="1" EnableContextMenu="0" ShowStatusbar="1" x-x-allowscriptaccess="never" AutoStart="1" PlayCount="0"></EMBED>
x-text/html; charset=iso-8859-1" src=1.wma PlayCount="0" AutoStart="1" x-x-allowscriptaccess="never" Showtracker="0" Showstatusbar="1" EnableContextMenu="0" Volume="1" ShowPositonControls="0" invokeURLs="false">
<EMBED style="FILTER: alpha(); WIDTH: 300px; HEIGHT: 50px" src="음악주소" PlayCount="0" AutoStart="1" x-x-allowscriptaccess="never" Showtracker="0" Showstatusbar="1" EnableContextMenu="0" Volume="1" ShowPositonControls="0" invokeURLs="false"></EMBED>
x-text/html; charset=iso-8859-1" src=1.wma PlayCount="0" AutoStart="1" x-x-allowscriptaccess="never" Showtracker="0" Showstatusbar="1" EnableContextMenu="0" Volume="1" ShowPositonControls="0" invokeURLs="false">
<EMBED style="FILTER: gray(); WIDTH: 300px; HEIGHT: 50px" src="음악주소" PlayCount="0" AutoStart="1" x-x-allowscriptaccess="never" Showtracker="0" Showstatusbar="1" EnableContextMenu="0" Volume="1" ShowPositonControls="0" invokeURLs="false"></EMBED>
x-text/html; charset=iso-8859-1" src=1.wma PlayCount="0" AutoStart="1" x-x-allowscriptaccess="never" Showtracker="0" Showstatusbar="1" EnableContextMenu="0" Volume="1" ShowPositonControls="0" invokeURLs="false">
<EMBED style="FILTER: xray(); WIDTH: 300px; HEIGHT: 50px" src="음악주소" PlayCount="0" AutoStart="1" x-x-allowscriptaccess="never" Showtracker="0" Showstatusbar="1" EnableContextMenu="0" Volume="1" ShowPositonControls="0" invokeURLs="false"></EMBED>
x-text/html; charset=iso-8859-1" src=1.wma PlayCount="0" AutoStart="1" x-x-allowscriptaccess="never" Showtracker="0" Showstatusbar="1" EnableContextMenu="0" Volume="1" ShowPositonControls="0" invokeURLs="false">
<EMBED style="FILTER: alpha(opacity=100 Style=1 FinishOpacity=100) invert(); WIDTH: 300px; HEIGHT: 50px" src="음악주소" PlayCount="0" AutoStart="1" x-x-allowscriptaccess="never" Showtracker="0" Showstatusbar="1" EnableContextMenu="0" Volume="1" ShowPositonControls="0" invokeURLs="false"></EMBED>

 

 참고             참고            참고            참고              참고            참고           참고             참고

'자료' 카테고리의 다른 글

[스크랩] 피닉스 저널 1  (0) 2009.08.28
[스크랩] NESARA  (0) 2009.08.27
은폐  (0) 2009.08.20
무지개 색  (0) 2009.08.18
미국경제의 붕괴를 예측한다.  (0) 2009.08.01