我們的特色形象的div背景,我們不能將其鏈接鏈接添加到分度,背景圖片,標題和
,當我們試圖用HREF作爲絕對必要的事情是錯的!
我們需要鏈接的div和它的標題,但保留類和評論的網址與其
網址,並與公佈網址上的div
不受影響,你可以在這裏看到現場代碼http://codepen.io/earngate/pen/dvVLEj
#thumb-wrap {
margin: 0 auto;
overflow: hidden;
}
.thumb-element:before {
content: "";
position: absolute;
width: 100%;
height: 100%;
right: 0;
bottom: 0;
left: 0;
background: -moz-linear-gradient(top, rgba(27, 26, 25, 0) 0%, rgba(27, 26, 25, 0) 46%, rgba(27, 26, 25, 0.44) 65%, rgba(27, 26, 25, 1) 99%, rgba(27, 26, 25, 1) 100%);
background: -o-linear-gradient(top, rgba(27, 26, 25, 0) 0%, rgba(27, 26, 25, 0) 46%, rgba(27, 26, 25, 0.44) 65%, rgba(27, 26, 25, 1) 99%, rgba(27, 26, 25, 1) 100%);
background: -ms-linear-gradient(top, rgba(27, 26, 25, 0) 0%, rgba(27, 26, 25, 0) 46%, rgba(27, 26, 25, 0.44) 65%, rgba(27, 26, 25, 1) 99%, rgba(27, 26, 25, 1) 100%);
background: -webkit-linear-gradient(top, rgba(27, 26, 25, 0) 0%, rgba(27, 26, 25, 0) 46%, rgba(27, 26, 25, 0.44) 65%, rgba(27, 26, 25, 1) 99%, rgba(27, 26, 25, 1) 100%);
background: linear-gradient(to bottom, rgba(27, 26, 25, 0) 0%, rgba(27, 26, 25, 0) 46%, rgba(27, 26, 25, 0.44) 65%, rgba(27, 26, 25, 1) 99%, rgba(27, 26, 25, 1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#001b1a19', endColorstr='#1b1a19', GradientType=0);
}
.thumb-element:hover .thumb-title,
.thumb-element:hover .thumb-summary {
margin-bottom: 5px;
background: no-repeat 50% 70%;
-webkit-transition: all 0.3s;
transition: all 0.3s;
}
.thumb-category {
position: absolute;
background: green;
border-radius: 30px;
padding: 1px 15px;
top: -30px;
right: 15px;
}
#thumb-wrap a {
opacity: 1.0;
color: #fff;
}
.relative {
position: relative
}
#thumb-first-container {
width: 50%;
float: right;
height: 390px !important;
}
#thumb-container {
float: right;
width: 20%;
height: 195px !important;
}
#thumb-container:nth-child(5n+2),
#thumb-container:nth-child(5n+5) {
width: 30%;
}
.thumb-title {
position: absolute;
bottom: 10px;
right: 10px;
direction: rtl
}
.thumb-link {
position: absolute;
top: 0;
left: 0;
bottom: 0;
width: 100%;
height: 100%;
z-index: 1;
}
.thumb-dummy {
padding-top: 60%;
}
.thumb-element {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
text-align: center;
border: 1px solid white;
padding-top: 19px;
background: no-repeat 50% 50%;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.thumb-content {
width: 100%;
}
.thumb-next {
position: absolute;
top: 50%;
}
.thumb-prev {
position: absolute;
top: 50%;
}
h2 {
font-size: 10pt;
}
<div id="thumb-wrap">
<div class="thumb-content">
<div id="thumb-first-container" class="relative">
<div class="thumb-dummy">
</div>
<div title="6 Animals that Went Viral Around the World" class="thumb-element" style="background-image: url('http://i.imgur.com/9GnXdDFl.jpg')">
<div class="thumb-title">
<div class="thumb-category">
<a href="http://animal-site.com/?cat=102363">News</a>
</div>
<a class="thumb-link" title="6 Animals that Went Viral Around the World" href="http://animal-site.com/?p=106588" rel="bookmark">
<h2>6 Animals that Went Viral Around the World </h2>
</a>
<div class="post-meta-info">
<span class="post-meta"><i class="fa fa-clock-o"></i>
\t <a rel="bookmark">2 weeks ago</a></span> <span class="post-meta">
\t <i class="fa fa-comments"></i>
\t <a href="http://animal-site.com/?p=106588#respond">0</a></span>
</div>
<p></p>
<div class="thumb-summary">
</div>
</div>
</div>
</div>
</div>
</div>
它的作品就像一個魅力,謝謝。 – meno