"card img hover"
Bootstrap 3.0.0 Snippet by evarevirus

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<figure class="snip1166">
<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/331810/sample74.jpg" alt="sample74"/>
<figcaption>
<h3>Max Conversion </h3>
<div>
<p>Your own mileage may vary. </p>
</div><a href="#"></a>
</figcaption>
</figure>
<figure class="snip1166 navy hover">
<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/331810/sample72.jpg" alt="sample72"/>
<figcaption>
<h3>Indigo Violet</h3>
<div>
<p>Trust me. I know what I'm doing.</p>
</div><a href="#"></a>
</figcaption>
</figure>
<figure class="snip1166 red">
<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/331810/sample73.jpg" alt="sample73"/>
<figcaption>
<h3>Richard Tea</h3>
<div>
<p>We live, in a very kooky time.</p>
</div><a href="#"></a>
</figcaption>
</figure>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
@import url(https://fonts.googleapis.com/css?family=Raleway:400,500,800);
figure.snip1166 {
font-family: 'Raleway', Arial, sans-serif;
color: #fff;
position: relative;
float: left;
margin: 10px 1.5%;
min-width: 210px;
max-width: 300px;
max-height: 220px;
width: 100%;
background: #ffffff;
color: #000000;
text-align: left;
}
figure.snip1166 * {
-webkit-box-sizing: padding-box;
box-sizing: padding-box;
-webkit-transition: all 0.6s ease;
transition: all 0.6s ease;
}
figure.snip1166 img {
opacity: 1;
width: 100%;
vertical-align: top;
-webkit-transition: opacity 0.4s;
transition: opacity 0.4s;
}
figure.snip1166 figcaption {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
}
figure.snip1166 figcaption > div {
height: 70%;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
/* Demo purposes only */
$(".hover").mouseleave(
function () {
$(this).removeClass("hover");
}
);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments:

This card is sweet

undisputedking (-3) - 6 years ago - Reply 0