View Full Version : Filters


Ninde
02-07-2003, 05:27 AM
Hello everyone! I'm sorta new to CSS... but I just LOVE the filters people use. Actually I just learned that they're called "filters" today on this forum, LOL.. but anyway... it's when the image blurs 'n stuffs when you hover your pointer over it... and also I've noticed some pages have a light colorwash over everything. These are filters, right? Well, if they are... I'm hoping someone would list all the filters and how to use them in coding. Thanks so much! ~m

Sheila
02-07-2003, 09:50 AM
Lissa has some filters listed here....

http://www.lissaexplains.com/fun7.shtml

Ninde
02-07-2003, 02:21 PM
Awesome! Thank you! Also... how do I apply filters to images? (Here's an example of what I want -- http://www.freewebs.com/flashoflight/ ) I love how the image "fades in" :) Thanks for all your help ~m

Sheila
02-07-2003, 03:01 PM
That is a script from www.dynamicdrive.com

http://www.dynamicdrive.com/dynamicindex4/highlightgrad2.htm

Ninde
02-07-2003, 06:15 PM
Thanks so much! It worked great!
Sorry... just one more question (I know I've been a pest ) .. but is it possible to use a filter on an entire page? I could've sworn I've seen pages that looked "faded" over the whole page... and I think it was a filter... anywho... thanks again for all the help

Alcy
02-07-2003, 11:15 PM
It's a lot easier to just edit your image to make it look faded. The only browser they work in is IE, and too many really slow down loading times.

For the whole page:
<style type="text/css">

body
{
filter:alpha(opacity:80);
}

</style>

Ninde
02-08-2003, 02:06 AM
Thanks! Wow, that's awesome! :D