°³Ã¼ÀÇ ³»¿ëÀ» ±×¸²ÀÚ Áø °Íó·³ º¯ÇüÇÏ¿© »õ·Î¿î ³»¿ëÀ¸·Î Ç¥ÇöÇÑ´Ù.
Script | object.style.filter='{progid:DXImageTransform.Microsoft.](propVal)' |
HTML | <ELEMENT style="filter:{progid:DXImageTransform.Microsoft.](propVal)"> |
progid:DXImageTransform.Microsoft. ºÎºÐÀº »ý·«ÀÌ °¡´ÉÇϳª ¼Ó¼º°ú È¿°ú°¡ ´Ù¼Ò ´Ù¸¦ ¼ö ÀÖ´Ù.
¾ÖÆ®¸®ºäÆ® | ¼Ó¼º | ¼³¸í |
---|---|---|
color | Color | ÇÊÅÍ¿¡ Àû¿ëµÇ´Â »ö»ó°ªÀ» ¹ÝȯÇϰųª ¼³Á¤ÇÑ´Ù. |
direction | Direction | ÇÊÅÍ È¿°ú°¡ ³ª´Â ¹æÇâÀ» ½Ã°è¹æÇâÀÇ °¢µµ·Î ¹ÝȯÇϰųª ¼³Á¤ÇÑ´Ù. |
enabled | Enabled | ÇÊÅÍ°¡ ÀÛ¿ëÇÒ ¼ö ÀÖ°Ô ÇÒ °ÍÀΰ¡¸¦ ¹ÝȯÇϰųª ¼³Á¤ÇÑ´Ù. true: »ç¿ë°¡´É, false:»ç¿ë ºÒ°¡´É |
strength | Strength | ÇÊÅÍ È¿°ú¸¦ ³»´Â °Å¸®¸¦ Çȼ¿ ´ÜÀ§·Î ¹ÝȯÇϰųª ¼³Á¤ÇÑ´Ù. |
A, ACRONYM, ADDRESS, B, BDO, BIG, BLOCKQUOTE, BODY, BUTTON, CAPTION, CENTER, CITE, CODE, CUSTOM, DD, DEL, DFN, DIR, DIV, DL, DT, EM, FIELDSET, FONT, FORM, FRAME, hn, I, IFRAME, IMG, INPUT type=button, INPUT type=checkbox, INPUT type=file, INPUT type=image, INPUT type=password, INPUT type=radio, INPUT type=reset, INPUT type=submit, INPUT type=text, INS, KBD, LABEL, LEGEND, LI, MARQUEE, MENU, NOBR, OL, OBJECT, P, plainText, PRE, Q, RT, RUBY, runtimeStyle, S, SAMP, SMALL, SPAN, STRIKE, STRONG, STYLE, SUB, SUP, TABLE, TD, TEXTAREA, TH, TT, U, UL, VAR, XMP |
<SCRIPT> function doPlay(){ divObj.filters[0].Strength=20; divObj.filters[0].Apply(); if (divObj.filters[0].Color=='blue'){ bgB=divObj.filters[0].Direction=45; divObj.filters[0].Color='red'; } else { bgB=divObj.filters[0].Direction=135; divObj.filters[0].Color='blue'; } divObj.filters[0].Play(); str='divObj.style.filter='+divObj.style.filter+'<BR>'; str+='¢¡Enabled=('+divObj.filters[0].Enabled+'), '; str+='Color=('+divObj.filters.item(0).Color+'), '; str+='Direction=('+divObj.filters(0).Direction+'), '; str+='Strength=('+divObj.filters(0).Strength+'), '; show.innerHTML=str; } </SCRIPT> <DIV id="divObj" style="height:100;width:500;font-size:40;line-height:1.2em;color:yellow;padding:9; filter:progid:DXImageTransform.Microsoft.Shadow(color=blue,direction=135);"> <IMG src=../../gif/rfexample.gif width=100><BR> Shadow ÇÊÅÍ ¿¹Á¦ </DIV> <BUTTON onclick="doPlay()" style="width:600">ÇÊÅÍ È¿°ú¸¦ À§ÇØ Å¬¸¯ÇØ º¸¶ó</BUTTON> <DIV id=show style="width:600;height:50;border:solid 1 blue;padding:3;font-size:80%">ÇÊÅÍ Ç¥½Ãâ</DIV>