Kör alakú képeffekt 1.
A CSS kódban minden fontos részt kiemeltem. A többin ne állíts semmit, különben valószínű, hogy nem fog működni a kód.
Demó
Szöveg része
<ul class="ch-grid">
<li>
<div class="ch-item ch-img-1">
<div class="ch-info">
<h3>
Ide jöhet szöveg</h3>
<p>
by LindaDesign <a href="http://drbl.in/eOPF">Átírt kódja</a></p>
</div>
</div>
</li>
</ul>
CSS kód
<style type="text/css">
.ch-item {
width: 100%;
height: 100%;
border-radius: 50%;
position: relative;
cursor: default;
box-shadow: inset 0 0 0 16px rgba(255,255,255,0.6), 0 1px 2px rgba(0,0,0,0.1);
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
.ch-img-1 { /* háttérkép a doboznak */
background-image: url(//aranymeli.gportal.hu/portal/aranymeli/image/gallery/1262187276_92.jpg)
}
.ch-info { /* a háttér színén kívül mást nem kell állítani ezen a kódon. */
position: absolute;
background: #CF8B96; /* háttér színe, ha ráviszed az egeret */
width: inherit;
height: inherit;
border-radius: 50%;
opacity: 0;
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
-webkit-transform: scale();
-moz-transform: scale();
-ms-transform: scale();
-o-transform: scale();
transform: scale();
-webkit-backface-visibility: hidden;
}
.ch-info h3 { /* szöveg a dobozban */
color: #ffffff; /* szöveg színe */
text-transform: uppercase;
letter-spacing: 2px;
font-size: 22px;
line-height: 30px;
margin: 0 30px;
padding: 45px 0 0 0;
height: 160px;
font-family: 'Open Sans', Arial, sans-serif;
text-shadow: 0 0 1px #fff, 0 1px 2px rgba(0,0,0,0.3);
}
.ch-info p { /* by LindaDesign szöveg kinézete */
color: #000000;
padding: 10px 5px;
font-style: normal;
font-weight: bold;
margin: 0 30px;
font-size: 12px;
border-top: 1px solid rgba(255,255,255,0.5);
opacity: 0;
-webkit-transition: all 1s ease-in-out 0.4s;
-moz-transition: all 1s ease-in-out 0.4s;
-ms-transition: all 1s ease-in-out 0.4s;
-o-transition: all 1s ease-in-out 0.4s;
transition: all 1s ease-in-out 0.4s;
}
.ch-info p a { /* aláhúzott szöveg kinézete a LindaDesign alatt */
display: block;
color: #B7334A !important;
font-style: normal;
font-weight: normal;
text-transform: uppercase;
font-size: 9px;
letter-spacing: 1px;
padding-top: 4px;
font-family: 'Open Sans', Arial, sans-serif;
}
.ch-info p a:hover { /* aláhúzott szöveg kinézete a LindaDesign alatt, ha ráviszed az egeret */
color: #E8ACB7 !important;
}
.ch-item:hover { box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1), 0 1px 2px rgba(0,0,0,0.1) }
.ch-item:hover .ch-info {
opacity: 0.8;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.ch-item:hover .ch-info p { opacity: 1 }
.ch-grid {
margin: 20px 0 0 0;
padding: 0;
list-style: none;
display: block;
text-align: center;
width: 100%;
}
.ch-grid:after,
.ch-item:before {
content: '';
display: table;
}
.ch-grid:after { clear: both }
.ch-grid li { /* az egész kör nagysága. NE legyen nagyobb mint a háttérképed! */
width: 300px;
height: 300px;
display: inline-block;
margin: 20px;
}
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}</style>
Forrás: http://sysmagazine.com/posts/149324/
|