Jump to content
  • 0

Прозрачность PNG для Internet Explorer


styleroom
 Share

Question

Всем привет! Нарыл на просторах всемирной паутины решение задачки по использованию возможностей png для Internet Explorer, который не любит его прозрачность. Загрузить фалы можно здесь http://www.styleroom.ru/files/pngbehavior102.zip. Заливаете все в корень сайта - и можно использовать полупрозрачные изображения, не боясь что IE их покорежит.

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0
Нда, единственная необходимая часть из архива в 75кб - это

element.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + src + "',sizingMethod='scale')";

:)

Да? Все оказывается так просто... Когда знаешь....

И куда эту строчку (или после чего) вставлять в коде страницы надо?

Link to comment
Share on other sites

  • 0

Для исправления png в стилях картинки достаточно прописать

	visibility: "hidden";
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="путь_и_имя_изображения", sizingMethod="scale");

А скрипт в общем не плох. Там вс? автоматизировано.

Link to comment
Share on other sites

  • 0

<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<style type="text/css">
visibility: "hidden";
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="путь_и_имя_изображения", sizingMethod="scale");
</style>
<body>
</body>
</html>

Правильно вставил?

Link to comment
Share on other sites

  • 0

Скорее так

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Untitled Document</title>
<style type="text/css">
img {
visibility: "hidden";
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="путь_и_имя_изображения", sizingMethod="scale");
}
</style>
</head>

<body>
</body>
</html>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy