Retroceder   Foros del Web > Diseño de Sitios web > CSS

Respuesta
 
Herramientas Desplegado
Antiguo 17-mar-2006, 11:41   #1 (permalink)
shakaran tiene algunos puntos positivos de karma
 
Avatar de shakaran
 
Fecha de Ingreso: agosto-2005
Ubicación: España - Ciudad Real
Mensajes: 244
Enviar un mensaje por MSN a shakaran Enviar un mensaje por Skype™ a shakaran
PNG y CSS para IE

Hola tengo varias imagenes en una web y me gusta ponerlas en PNG, porque dan mas calidad ocupando menos, pero claro si hago eso, las trasparencias y mucho de lo que tengo en CSS solo se ven bien en firefox...sabeis si hay algun script para que la gente que se meta desde el IE las vea bien? Gracias
shakaran está desconectado   Responder Citando
Antiguo 17-mar-2006, 12:24   #2 (permalink)
fullmental está en el buen camino
 
Avatar de fullmental
 
Fecha de Ingreso: octubre-2004
Ubicación: México DF, Xochimilco
Mensajes: 526
Enviar un mensaje por ICQ a fullmental Enviar un mensaje por MSN a fullmental
si lo hay seguramente si usas el motor de busqueda de este mismo foro lo encontraras

busca png fix ie

aqui o en google.
__________________
diseño web
fullmental está desconectado   Responder Citando
Antiguo 18-mar-2006, 15:06   #3 (permalink)
sjam7 está en el buen camino
 
Avatar de sjam7
 
Fecha de Ingreso: noviembre-2002
Ubicación: Guadalajara, Mexico
Mensajes: 3.254
Enviar un mensaje por MSN a sjam7 Enviar un mensaje por Yahoo  a sjam7
Pon este script en tus paginas:

Código:
<!--[if gte IE 5.5000]>
<script language="JavaScript">
function correctPNG() // correctly handle PNG transparency in Win IE 5.5 or higher.
   {
   for(var i=0; i<document.images.length; i++)
      {
      var img = document.images[i]
      var imgName = img.src.toUpperCase()
      if (imgName.substring(imgName.length-3, imgName.length) == "PNG")
         {
         var imgID = (img.id) ? "id='" + img.id + "' " : ""
         var imgClass = (img.className) ? "class='" + img.className + "' " : ""
         var imgTitle = (img.title) ? "title='" + img.title + "' " : "title='" + img.alt + "' "
         var imgStyle = "display:inline-block;" + img.style.cssText 
         if (img.align == "left") imgStyle = "float:left;" + imgStyle
         if (img.align == "right") imgStyle = "float:right;" + imgStyle
         if (img.parentElement.href) imgStyle = "cursor:hand;" + imgStyle        
         var strNewHTML = "<span " + imgID + imgClass + imgTitle
         + " style=\"" + "width:" + img.width + "px; height:" + img.height + "px;" + imgStyle + ";"
         + "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"
         + "(src=\'" + img.src + "\');\"></span>" 
         img.outerHTML = strNewHTML
         i = i-1
         }
      }
   }
window.attachEvent("onload", correctPNG);
</script>
<![endif]-->
__________________
CreandoWebs.com
www.creandowebs.com
PLANTILLAS TEMPLATEMONSTER CON 10% DE DESCUENTO
sjam7 está desconectado   Responder Citando
Respuesta

No hay votos aún.


Herramientas
Desplegado

Normas de Publicación
No puedes crear nuevos temas
No puedes responder temas
No puedes subir archivos adjuntos
No puedes editar tus mensajes

BB code is Activado
Caritas están Activado
[IMG] está Activado
Código HTML está Desactivado


La Zona horaria es GMT -6. Ahora son las 21:11.


Message Board Statistics

LinkBacks Enabled by vBSEO 3.1.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93