Beispielcode für 30%ige Farbdurchlässigkeit eines Bildes und Erhöhung auf 100%, wenn man mit dem Mauszeiger über’s Bild geht.
a img {
-moz-opacity: 0.30; /* Gecko */
filter:alpha(opacity=30); /* IE */
opacity: 0.30; /* Opera */
}
a:hover img {
-moz-opacity: 1.00; /* Gecko */
filter:alpha(opacity=100); /* IE */
opacity: 1.00; /* Opera */
}