11/07/2009, 12:12
|
| Viejo demente | | Fecha de Ingreso: junio-2004 Ubicación: Caracas - Venezuela
Mensajes: 9.027
Antigüedad: 20 años, 7 meses Puntos: 832 | |
Respuesta: Solución fácil al problema del png con alpha en ie6 Cita:
Iniciado por dART Hola,
Dudo mucho que eso cumpla los estándares de CSS.. Por eso existe algo llamado "condicionales" y "hoja de estilo para ie". Excelente, no solo esas sino más aún. Aquí sólo se está exponiendo una más, que por cierto me pareció excesivamente fácil de implementar. Cita:
Iniciado por gabrielflowers metacortex: tu solucion no funciona, lo probe con imagenes png y nada: Código HTML: <html>
<head>
<title>Pagina nueva 1</title>
<style>
.png {
behavior: expression((this.runtimeStyle.behavior="none")&&(this.pngSet?this.pngSet=true:(this.nodeName == "IMG" && this.src.toLowerCase().indexOf('.png')>-1?(this.runtimeStyle.backgroundImage = "none",
this.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + this.src + "', sizingMethod='image')",
this.src = "transparent.gif"):(this.origBg = this.origBg? this.origBg :this.currentStyle.backgroundImage.toString().replace('url("','').replace('")',''),
this.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + this.origBg + "', sizingMethod='crop')",
this.runtimeStyle.backgroundImage = "none")),this.pngSet=true)
);
}
</style>
</head>
<body>
<img src="world3.png" width="50%" height="50%" class="png">
</body>
</html> http://www.darioferrer.com/varios/prueba-png/ |