Temos pavadinimas: WordPress, Shopify ir PHPFusion programuotojų bendruomenė :: Gal turite kodą?

Parašė Spyware· 2009 Vas. 14 17:02:24
#1

Sveiki,
gal turite kodą , kurį įdėjus persišviestu(opocity ~50) per bg.
Jei galite duokite... DĖKUI.

Parašė robert· 2009 Vas. 14 17:02:12
#2

<img src="klematis.jpg" width="150" height="113" alt="klematis"
style="opacity:0.4;filter:alpha(opacity=50)" />



http://www.w3schools.com/Css/css...arency.asp

Parašė Spyware· 2009 Vas. 14 17:02:09
#3

Čia į style.css bandysiu dėti kad per bg persišviestų.

Parašė robert· 2009 Vas. 14 17:02:01
#4


<html>
<head>
<style type="text/css">
div.background
  {
  width: 500px;
  height: 250px;
  background: url(klematis.jpg) repeat;
  border: 2px solid black;
  }
div.transbox
  {
  width: 400px;
  height: 180px;
  margin: 30px 50px;
  background-color: #ffffff;
  border: 1px solid black;
  /* for IE */
  filter:alpha(opacity=60);
  /* CSS3 standard */
  opacity:0.6;
  }
div.transbox p
  {
  margin: 30px 40px;
  font-weight: bold;
  color: #000000;
  }
</style>
</head>

<body>

<div class="background">
<div class="transbox">
<p>This is some text that is placed in the transparent box.
This is some text that is placed in the transparent box.
This is some text that is placed in the transparent box.
This is some text that is placed in the transparent box.
This is some text that is placed in the transparent box.
</p>
</div>
</div>

</body>
</html>