[Beschreibung]
Beipiel, wie mit CSS- Filtern transparente Image Links erzeugt werden können.
[Kompatibilität]
[Code]
<script LANGUAGE="JavaScript">
<!-- Original: Paul Miller (webmaster@hypedup.co.uk) --> <!-- Web Site: http://www.hypedup.co.uk -->
<!-- Begin if ((navigator.appName.indexOf('Microsoft')+1)) { document.write('<style type="text/css"> .opacity1 {filter:alpha(opacity=50)} .opacity2 {filter:alpha(opacity=100)} </style>'); } if ((navigator.appName.indexOf('Netscape')+1)) { document.write('<style type="text/css"> .opacity1 {-moz-opacity:0.5} .opacity2 {-moz-opacity:1} </style>'); } else { document.write(''); } // End --> </script>
<table align="center" cellpadding="10"> <tr><td> <a href="dummy.htm"><img src="nf_rotate.gif" border="0" class="opacity1" onmouseover="this.className='opacity2'" onmouseout="this.className='opacity1'"></a> </td><td> <a href="dummy.htm"><img src="nf_rotate.gif" border="0" class="opacity1" onmouseover="this.className='opacity2'" onmouseout="this.className='opacity1'"></a> </td></tr> </table>
Paul Miller
Kopieren Sie bitte den Code