我想做一個網站,即6兼容。我已將兩個PNG文件(PNG-8)與<img src>
標籤包含在一起。當我用IE6打開網站時,圖片會出現一會兒並再次消失。我如何解決這個問題,沒有任何JavaScript或其他額外的文件?在Internet Explorer 6中的透明PNG
0
A
回答
1
如果添加JS實在不是一種選擇,你可以嘗試使用以下過濾器:
img {
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(...);
}
我會,但是,不建議這樣的... JS方法通常更好。
1
如果沒有JavaScript或其他文件,你無法做到這一點。 IE6不支持本地透明的PNG。
1
ie6確實支持8bit的透明度,而不是大多數人使用的32bit。並且支持不是100%,部分透明度將顯示爲透明,但事實仍然是,您可以在ie6中獲得透明度。
你可以爲ie6創建一個專門用於ie6的gif,並通過條件註釋提供它......這聽起來最適合你在做什麼。
還有一些JavaScript和/或HTC解決方案
相關問題
- 1. Internet Explorer PNG CSS不透明度問題
- 2. Dojo Internet Explorer 6 png問題
- 3. 在老版本的Internet Explorer中使Png圖像透明
- 4. 在Internet Explorer中用透明背景替換PNG圖像
- 5. Internet Explorer:半透明圖像
- 6. Internet Explorer中的透明背景
- 7. Internet Explorer 8中的透明/不透明問題
- 8. Internet Explorer的過濾<input>透明
- 9. 的Internet Explorer 8和Internet Explorer 6並排
- 10. 在Internet Explorer 6中使用透明PNGs的最佳解決方案是什麼?
- 11. Internet Explorer的6/7
- 12. 透明PNG在LWJGL中不透明
- 13. 透明度縮放PNG文件渲染在Internet Explorer 9(IE9)鋸齒狀邊緣
- 14. IE 6 png透明度問題
- 15. Winforms半透明PNG半透明PNG
- 16. 在Internet Explorer中沒有收到鼠標事件的透明swf
- 17. JavaScript不透明在Internet Explorer中的反鋸齒問題
- 18. 在Internet Explorer 6中訪問SELECT的值
- 19. 當wmode透明或不透明時,Internet Explorer中的閃存性能下降
- 20. Internet Explorer 6的Z-指數
- 21. 的Internet Explorer 6 PNG修復+ CSS只(除IE6)下拉菜單
- 22. Internet Explorer 8顯示黑色到灰色漸變,而不是透明PNG
- 23. PNG透明度
- 24. CSS不透明度在Internet Explorer 7中不起作用?
- 25. jQuery不透明度動畫扭曲定位在Internet Explorer中
- 26. 透明色在Internet Explorer中不起作用
- 27. 彈出窗口在Internet Explorer中顯示爲透明
- 28. 如何在Google圖表中爲Internet Explorer製作透明背景?
- 29. GD透明PNG
- 30. 使用emsp;在Internet Explorer 6中
我試過濾器,什麼都沒發生:/你說得對..我會用JS – Vince