"Hover Effects"
Bootstrap 3.3.0 Snippet by kuljotsingh

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
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.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 ---------->
<div class="container">
<div class="row">
<h1>CSS Image Hover Effects</h1>
<p><a href="http://www.nxworld.net/tips/css-image-hover-effects.html" target="_blank">View the article</a></p>
<h2 id="demo12">1. Opacity #2</h2>
<div class="hover12 column">
<div>
<figure><div class="water"><img src="https://49.media.tumblr.com/f3c9e15a689925e42476eb4240d8d1ce/tumblr_n4oxmzniLQ1rcasfmo1_r1_500.gif" /></div></figure>
<span>born</span>
</div>
<div>
<figure style="background-color:#9b59b6;"><div class="water"><img src="http://www.sikharchives.com/wp-content/uploads/2012/03/khalistan_flag.gif"/></div></figure>
<span>to</span>
</div>
<div>
<figure style="background-color:#000;"><div class="gatka"><img src="http://3.bp.blogspot.com/-fasE7xNdLkA/VZos4O5bSwI/AAAAAAAADpI/vQym6JWapLI/s1600/gatka-sikh-martial-art-915x919.jpg"></div></figure>
<span>lead</span>
</div>
</div>
</div>
</div>
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
body {
color: #333;
font-family: 'Open Sans', sans-serif;
font-weight: 300;
}
h1, h1 + p {
background: black none repeat scroll 0 0;
color: white;
font-weight: 300;
margin: 15px 15px 0;
padding: 10px;
width:69%;
}
h1+p a {
color: #fff; text-decoration:none;
}
h1+p a:hover {
text-decoration: none;
}
h2 {
background: black none repeat scroll 0 0;
color: white;
font-weight: 300;
font-size:14px;
margin: 13px 15px 0;
padding: 6px;
width: 15%;
}h2 span {
margin-left: 1em;
color: #aaa;
font-size: 85%;
}
.column {
margin: 15px 15px 0;
padding: 0;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: