Adjusts the opacity of the content of the object. dhtml语法 HTML | <ELEMENT STYLE= "filter:progid:DXImageTransform.Microsoft.Alpha(sProperties)" ... > | Internet Explorer
5.5 or later |
---|
Scripting | object.style.filter = "progid:dximagetransform.microsoft.alpha(sproperties)" | Internet Explorer
5.5 or later |
---|
DHTML可能的值 sProperties | String that specifies one or more properties exposed by the filter. |
Members Table
The following table lists the members exposed by the
Alpha
object. Click a tab on the left to choose the type of member you want to view. Attributes/Properties Attribute | Property | Description |
---|
enabled | Enabled |
Sets or retrieves a value that indicates whether the filter is enabled. | finishopacity | FinishOpacity |
Sets or retrieves the opacity level at the end of the gradient applied with the Alpha filter. | finishx | FinishX |
Sets or retrieves the horizontal position at which the opacity gradient ends. | finishy | FinishY |
Sets or retrieves the vertical position at which the opacity gradient ends. | opacity | Opacity |
Sets or retrieves the opacity level at the beginning of the gradient applied with the Alpha filter. | startx | StartX |
Sets or retrieves the horizontal position at which the opacity gradient starts. | starty | StartY |
Sets or retrieves the vertical position at which the opacity gradient starts. | style | Style |
Sets or retrieves the shape characteristics of the opacity gradient. |
Remarks You can set the opacity as uniform or graded, in a linear or radial fashion. The following list of allowable Style property values provides more information on how the Alpha filter properties support each style of filtered output.
- 0UniformApplies opacity value evenly across the object.
- 1linearapplies an even opacity gradient, beginning with the opacity value on a line from startx to starty and ending with the finishopacity value on a line from finishx to finishy.
- 2radialapplies an even opacity gradient, beginning in the center with the opacity value and ending at the middle of the sides of the object with the finishopacity value. the corners of the object are not affected by the opacity gradient.
- 3rectangularapplies an even opacity gradient, beginning at the sides of the object with the opacity value and ending at the center of the object with the finishopacity value.
this effect is supported in microsoft® internet explorer 4.0. for more information about internet explorer 4.0 filter behavior, see Downlevel Support and Internet Explorer 4.0 Filters.
The object that the filter is applied to must have layout before the filter effect displays. you can give the object layout by setting the height or width property, setting the position property to absolute, setting the writingmode property to tb-rl, or setting the contenteditable property to true. you can assign multiple filters or transitions to an object by declaring each in the filter property of the object. the following div declaration assigns two filters and a Wheel transition to a div element.
<DIV STYLE="width:100%; filter:
progid:DXImageTransform.Microsoft.MotionBlur(strength=13, direction=310)
progid:DXImageTransform.Microsoft.Blur(pixelradius=2)
progid:DXImageTransform.Microsoft.Wheel(duration=3);">
Blurry text with smudge of gray.</div>
When multiple filters are applied to an object, each filter is processed in source order, with the exception of procedural surfaces, which are computed first. To emphasize a filter's effect, place it last in source order or on the object's parent. Always place transitions last in source order.
Examples
The following example shows the effects of this filter when its properties are modified. This feature requires Microsoft® Internet Explorer 5.5 or later. Click the following icon to install the latest version. Then reload this page to view the sample.
This example uses the Alpha filter and the Opacity property to change the appearance of a button. <STYLE>
INPUT.aFilter {filter:progid:DXImageTransform.Microsoft.Alpha(opacity=50);}
</STYLE>
<INPUT TYPE="button" VALUE="Button" CLASS="aFilter"> This feature requires Microsoft® Internet Explorer 5.5 or later. Click the following icon to install the latest version. Then reload this page to view the sample.
applies to |
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 | |
更多语法参考 scripting filters, Filter Design Considerations
|