Ominaisuus opasiteetti
määrittää elementin läpinäkyvyyden/läpinäkyvyyden.
Ominaisuuden opasiteetti
arvo voi olla 0,0-1,0. Mitä pienempi arvo, sitä läpinäkyvämpi:
opacity 0.2
opacity 0.5
opacity 1
(default)
img {
opacity: 0.5;
}
Kokeile itse →
<!DOCTYPE html>
<html>
<head>
<style>
img {
opacity: 0.5;
}
</style>
</head>
<body>
<h1>Image Transparency</h1>
<p>The opacity property specifies the transparency of an element. The lower the value, the more transparent:</p>
<p>Image with 50% opacity:</p>
<img src="img_forest.jpg" alt="Forest" width="170" height="100">
</body>
</html>
Ominaisuutta opasiteetti
käytetään usein yhdessä :hover
-valitsimen kanssa muuttamaan peittävyyttä vietäessä hiiri päälle:
img {
opacity: 0.5;
}
img:hover {
opacity: 1.0;
}
Kokeile itse →
<!DOCTYPE html>
<html>
<head>
<style>
img {
opacity: 0.5;
}
img:hover {
opacity: 1.0;
}
</style>
</head>
<body>
<h1>Image Transparency</h1>
<p>The opacity property is often used together with the :hover selector to change the opacity on mouse-over:</p>
<img src="img_forest.jpg" alt="Forest" width="170" height="100">
<img src="img_mountains.jpg" alt="Mountains" width="170" height="100">
<img src="img_5terre.jpg" alt="Italy" width="170" height="100">
</body>
</html>
Ensimmäinen CSS-lohko on samanlainen kuin esimerkin 1 koodi. Lisäksi olemme lisänneet, mitä pitäisi tapahtua, kun käyttäjä vie hiiren jonkin kuvan päälle. Tässä tapauksessa haluamme, että kuva EI ole läpinäkyvä, kun käyttäjä vie hiiri sen päälle. Tämän CSS-koodi on opacity:1;
.
Kun hiiren osoitin siirtyy pois kuvasta, kuva on taas läpinäkyvä.
Esimerkki käänteisestä hover-efektistä:
img:hover {
opacity: 0.5;
}
Kokeile itse →
<!DOCTYPE html>
<html>
<head>
<style>
img:hover {
opacity: 0.5;
}
</style>
</head>
<body>
<h1>Image Transparency</h1>
<p>The opacity property is often used together with the :hover selector to change the opacity on mouse-over:</p>
<img src="img_forest.jpg" alt="Forest" width="170" height="100">
<img src="img_mountains.jpg" alt="Mountains" width="170" height="100">
<img src="img_5terre.jpg" alt="Italy" width="170" height="100">
</body>
</html>
Kun opasiteetti
-ominaisuutta käytetään lisäämään läpinäkyvyyttä elementin taustaan, kaikki sen alielementit perivät saman läpinäkyvyyden. Tämä voi tehdä täysin läpinäkyvän elementin tekstistä vaikeasti luettavan:
opacity 1
opacity 0.6
opacity 0.3
opacity 0.1
div {
opacity: 0.3;
}
Kokeile itse →
<!DOCTYPE html>
<html>
<head>
<style>
div {
background-color: #04AA6D;
padding: 10px;
}
div.first {
opacity: 0.1;
}
div.second {
opacity: 0.3;
}
div.third {
opacity: 0.6;
}
</style>
</head>
<body>
<h1>Transparent Box</h1>
<p>When using the opacity property to add transparency to the background of an element, all of its child elements become transparent as well. This can make the text inside a fully transparent element hard to read:</p>
<div class="first"><p>opacity 0.1</p></div>
<div class="second"><p>opacity 0.3</p></div>
<div class="third"><p>opacity 0.6</p></div>
<div><p>opacity 1 (default)</p></div>
</body>
</html>
Jos et halua käyttää peittävyyttä alatason elementteihin, kuten yllä olevassa esimerkissä, käytä RGBA-väriarvoja. Seuraava esimerkki määrittää läpinäkyvyyden taustavärille, ei tekstille:
100% opacity
60% opacity
30% opacity
10% opacity
Opit CSS-värit-luvusta, että voit käyttää RGB:tä väriarvona. RGB:n lisäksi voit käyttää RGB-väriarvoa alfakanavan (RGBA) kanssa - joka määrittää värin peittävyyden.
RGBA-väriarvo määritetään seuraavasti: rgba(punainen, vihreä, sininen, alpha). The alpha-parametri on luku väliltä 0,0 (täysin läpinäkyvä) ja 1,0 (täysin läpinäkymätön).
Vinkki: Saat lisätietoja RGBA-väreistä CSS-värit-luvussamme.
div {
background: rgba(76, 175, 80, 0.3) /* Green background with 30%
opacity */
}
Kokeile itse →
<!DOCTYPE html>
<html>
<head>
<style>
div {
background: rgb(4, 170, 109);
padding: 10px;
}
div.first {
background: rgba(4, 170, 109, 0.1);
}
div.second {
background: rgba(4, 170, 109, 0.3);
}
div.third {
background: rgba(4, 170, 109, 0.6);
}
</style>
</head>
<body>
<h1>Transparent Box</h1>
<p>With opacity:</p>
<div style="opacity:0.1;"><p>10% opacity</p></div>
<div style="opacity:0.3;"><p>30% opacity</p></div>
<div style="opacity:0.6;"><p>60% opacity</p></div>
<div><p>opacity 1</p></div>
<p>With RGBA color values:</p>
<div class="first"><p>10% opacity</p></div>
<div class="second"><p>30% opacity</p></div>
<div class="third"><p>60% opacity</p></div>
<div><p>default</p></div>
<p>Notice how the text gets transparent as well as the background color when using the opacity property.</p>
</body>
</html>
This is some text that is placed in the transparent box.
<html>
<head>
<style>
div.background {
background: url(klematis.jpg) repeat;
border: 2px solid black;
}
div.transbox {
margin: 30px;
background-color: #ffffff;
border: 1px solid black;
opacity: 0.6;
}
div.transbox p {
margin: 5%;
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.</p>
</div>
</div>
</body>
</html>
Kokeile itse →
<!DOCTYPE html>
<html>
<head>
<style>
div.background {
background: url(klematis.jpg) repeat;
border: 2px solid black;
}
div.transbox {
margin: 30px;
background-color: #ffffff;
border: 1px solid black;
opacity: 0.6;
}
div.transbox p {
margin: 5%;
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.</p>
</div>
</div>
</body>
</html>
Ensin luomme <div>-elementin (class="background"), jossa on taustakuva ja reunus.
Sitten luomme toisen <div> (class="transbox") ensimmäisen <div>:n sisään.
The <div class="transbox"> on taustaväri ja reunus - div on läpinäkyvä.
Sisällä läpinäkyvä <div>, lisäämme tekstiä <p>-elementin sisään.