Jump to content
  • 0

Пропадает прозрачность


stars
 Share

Question

Изначальная задача сделать полупрозрачный текст под углом (и не было бы проблем если бы какие то чудики все не забили на IE 6-8)

Вот как оно выглядит по идеи:

<!DOCTYPE html>
<html lang="ru">
<head>
<title>test</title>
<meta charset="UTF-8">
<style type="text/css">
#mytext {
width:150px;
margin:200px auto;
opacity:0.3;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
-moz-opacity: 0.3;
-khtml-opacity: 0.3;
filter: alpha(opacity=20);
transform:rotate(-25deg);
-moz-transform:rotate(-25deg);
-webkit-transform:rotate(-25deg);
-o-transform:rotate(-25deg);
-ms-transform:rotate(-25deg);
filter:progid:DXImageTransform.Microsoft.Matrix(M11='0.985', M12='-0.174', M21='0.174', M22='0.985', SizingMethod="auto expand", enabled=true);
}
</style>
</head>
<body>
<div id="mytext">Проба проба проба</div>
</body>
</html>

НО, в IE не работает прозрачность, если убрать строчку filter:progid:DXImageTransform.Microsoft.Matrix то прозрачность будет работать но соответственно текст не повернется...

Замечу, что да svg\canvas и иже с ними решает проблему или php с графической библиотекой, но условие данного задания состоит в том чтобы был только html + css... (можно рассмотреть случай с JS)

Резюмирую, у меня не получается одновременно повернуть текст и сделать его прозрачным в IE 6-8, есть идеи как это осуществить?

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Так вы два раза назначаете filter, затирая первый. Плюс в IE9 фильтры плохо дружат с нативной прозрачностью. Вот как-то так не решает? Правда, старый IEшный баг с рендерингом шрифтов с фильтрами без фона вылез...

  • Like 1
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