02/03/2012, 04:45
|
| | Fecha de Ingreso: febrero-2012
Mensajes: 12
Antigüedad: 12 años, 10 meses Puntos: 0 | |
Respuesta: Evitar bloqueo script de ie Este es el script por si me puedes ayudar:
<script>
function ilumina (obj) {
obj.style.filter='alpha(opacity=100)';
obj.style.opacity=1;
}
function apaga (obj) {
obj.style.filter='alpha(opacity=50)';
obj.style.opacity=.5;
}
</script>
Y en el Body:
<a href="index.html">
<img src="objetos/iconred.png" style="filter:alpha(opacity=50); opacity:.5"
onmouseover="ilumina(this)" onmouseout="apaga(this)" border=0 />
</a>
Gracias |