filters

windows

Guest
what other types of filters are there in CSS?
i only know two so far and they're


style="filter:glow(color:lime;strength:10)"

and

style="filter:shadow(color:lime)"


but im sure that i have seen some other ones before and i cant find them again.

Thanks a lot!someone posted this link to me,,, and so I might post this to you aswell :)Originally posted by Siddan
someone posted this link to me,,, and so I might post this to you aswell :) Where da link?:Dvery good question....

but here it is, hehe

<!-- m --><a class="postlink" href="http://www.w3schools.com/dhtml/dhtml_examples.aspNote">http://www.w3schools.com/dhtml/dhtml_examples.aspNote</a><!-- m --> that these "filters" are not actually part of CSS; they are proprietary enhancements to specific browsers (MSIE), and as such they are not likely to be seen by all users. For more info on available filters for MSIE, see <!-- m --><a class="postlink" href="http://msdn.microsoft.com/library/default.asp?url=/workshop/author/filter/filters_transitions_entry.asp">http://msdn.microsoft.com/library/defau ... _entry.asp</a><!-- m --> .Background Filter:
filter:progid:DXImageTransform.Microsoft.Gradient(endColorstr='#000000', startColorstr='#ffffff', gradientType='1');
Image Filters:
filter: alpha(style=1, opacity=70); // Gradient edges (1)
filter: alpha(style=2, opacity=70); // Circular edges (2)
filter: alpha(style=3, opacity=70); // Fading edges (3)
Text Filters:
filter: shadow(color=#000000, direction=200);
filter: dropShadow(Color=#000000, OffX=2, OffY=2, positive=2);
filter: glow(color=#000000, strength=10);
filter: alpha(opacity=100, finishOpacity=0, style=1, startX=0, startY=0, finishX=200, finishY=0);
filter: blur(add=1, direction=220, strength=10);
filter: wave(add=0, freq=1, lightStrength=20, phase=10, strength=10);
For more information on DHTML filters visit Microsofts "Introduction to Filters and Transitions (<!-- m --><a class="postlink" href="http://msdn.microsoft.com/library/default.asp?url=/workshop/author/filter/filters.asp">http://msdn.microsoft.com/library/defau ... ilters.asp</a><!-- m -->)" Development page.thanks a lot
 
Back
Top