"button hover"
Bootstrap 3.3.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
<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="shop-button">
<div class="payment">
<small>TTNET'lilere</small>
<span>8,33 x 12</span>
</div>
<a href="" class="game">
<span>South Park: The Stick of Truth</span>
</a>
<a href="" class="go"><i></i></a>
</div>
<br>
<div class="shop-button">
<div class="payment">
<small>TTNET'lilere</small>
<span>8,33 x 12</span>
</div>
<a href="" class="game">
<span>OYUNU SATIN AL</span>
</a>
<a href="" class="go"><i></i></a>
</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 {
text-align: center;
background: #f2f2f2;
}
.shop-button {
position: relative;
display: inline-block;
margin: 50px 0;
font-family: 'Titillium Web', sans-serif;
box-sizing: border-box;
}
.shop-button .payment {
z-index: 1;
position: absolute;
display: block;
padding: 10px;
left: -10px; top: 5px; bottom: 5px;
background: #333;
font-weight: 300;
color: #fff;
text-align: left;
line-height: 120%;
transition: all .25s ease-in-out;
}
.shop-button:hover .payment {
left: 0;
transform: translateX(-100%);
}
.shop-button .payment small {
display: block;
white-space: nowrap;
font-size: 11px;
}
.shop-button .payment span {
display: block;
white-space: nowrap;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: