Jump to content
  • 0

Как зделать БГ немного прозрачным


Mr.Black
 Share

Question

20 answers to this question

Recommended Posts

  • 0
Хороший сайт ,но один вопрос какой #311a13 ето цвет в rgba???
FireFox+ColorZilla

p.s. Только не забывайте что такая прозрачность в большом количестве лагает страничку, при чём чем больше элементов на странице (неважно прозрачных или нет) тем сильней будут лаги. А если ещё и text-shadow добавить, то на ноутбуке в IE сайт уже не откроется. Рекомендуется использовать только для маленьких popup окошек.

Edited by deadrash
Link to comment
Share on other sites

  • 0

На том же сайте куда ссылку давал там описано как проблему в ИЕ решить, параграф "A better fallback for IE" смотрите.

там в коде:

<!--[if IE]>

<style type="text/css">

.color-block {

background:transparent;

filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000050,endColorstr=#99000050);

zoom: 1;

}

</style>

<![endif]-->

Я так понимаю вот эти 50 как раз и означают прозрачность 0.5

Но в какой версии ИЕ это должно работать не знаю, не пробовал, может во всех.

Edited by deadrash
Link to comment
Share on other sites

  • 0
Я так понимаю вот эти 50 как раз и означают прозрачность 0.5

Но в какой версии ИЕ это должно работать не знаю, не пробовал, может во всех.

Нет. Это цвет. Прозрачность задается первыми двумя знаками (в шестнадцатиричном формате).

Работает то ли с 4-го то ли с 5-го ИЕ.

Link to comment
Share on other sites

  • 0

Mr.Black, дубль три... используйте OPACITY. Ужос...

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="ru">

<head>
<title>An XHTML 1.0 Strict standard template</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />

<style type="text/css">
body {
background: #69c;
}

.opaque {
position: relative;
width: 300px;
}

.opaque .content {
position: relative;
z-index: 1;
padding: 10px;
}

.opaque .bg {
position: absolute;
top: 0;
bottom: 0;
width: 100%;
background: #f00;

-moz-opacity: 0.5;
-khtml-opacity: 0.5;
opacity: 0.5;
-ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=50)';
}
</style>

<!--[if lt IE 8]>
<style type="text/css">
.opaque .bg {
filter: alpha(opacity=50);
}
</style>
<![endif]-->

<!--[if lt IE 7]>
<style type="text/css">
.opaque .bg {
height: expression(this.parentNode.offsetHeight + 'px');
}
</style>
<![endif]-->
</head>

<body>

<div class="opaque">
<div class="content">
Я не прозрачный текст! Юзер, примени мозг и ты
додумаешься до гораздо более удивительных вещей чем
элементарное подсовывание бекграунда под текст!
</div>
<div class="bg"></div>
</div>

</body>
</html>

Link to comment
Share on other sites

  • 0
sigma77,спасибо,откуда узнал???

Прочитала + http://msdn.microsoft.com/en-us/library/ms...7(v=VS.85).aspx

HTML

<div>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc et tortor dui, ac ornare mauris. Quisque tincidunt ipsum ac ante commodo non suscipit tortor volutpat. Donec tristique, sapien vel posuere mattis, sem massa pellentesque dolor, eget hendrerit nibh libero sed turpis. Fusce elementum lectus eu enim pharetra placerat. </p>
</div>

CSS

div {
background: rgba(49, 26, 19, 0.5);
filter:progid:DXImageTransform.Microsoft.Gradient(StartColorStr='#7F311A13', EndColorStr='#7F311A13');
}

Таблица перевода значений:

0 - 00

0.1 - 1A

0.2 - 33

0.3 - 4D

0.4 - 66

0.5 - 7F

0.6 - 99

0.7 - B3

0.8 - CC

0.9 - E5

1 - FF

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