Displaying 2 results from an estimated 2 matches for "iepng".
Did you mean:
iepg
2006 Mar 19
0
IE opacity and png alpha
...o get alpha
transparency on the pngs, and this is cancelled out by the opacity
setting, yet it says this was fixed in scriptaculous.
JavaScript for png filtering at bottom.
The div becomes visible again (or rather, the images comes back) when
dragging is ended.
Any ideas?
Andreas
function iePNG() {
var images = document.getElementsByTagName("img");
if (images[0].style.filter != null) {
var src;
for (var i = 0; i < images.length; i++) {
src = images[i].src;
if (src.indexOf(".png") > 0) {
images[i].src = "images/blank.gif";
images[i]...
2006 Jun 19
13
PNG and Alpha-Transparency
Is there a prototype / extension which will assist in cross-browser support
of PNG images?
http://www.alistapart.com/articles/pngopacity/
It seems to me that a class could be developed which would zip through the
DOM and make changes where needed for IE 5.5 / IE 6.0 to handle PNG images.
I don''t want to write one if it''s been done before.
Sam