"pricing table with hover effects"
Bootstrap 3.3.0 Snippet by prakash044

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
<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">
<div class="col-md-3 col-sm-6">
<div class="pricingTable">
<div class="pricingTable-header">
<span class="heading">
<h3>Standard</h3>
</span>
<span class="price-value"><span class="currency">$</span>10<span class="mo"> month</span></span>
</div>
<div class="pricingContent">
<ul>
<li>50GB Disk Space</li>
<li>50 Email Accounts</li>
<li>50GB Monthly Bandwidth</li>
<li>50 Domains</li>
<li>Unlimited Subdomains</li>
</ul>
</div><!-- / CONTENT BOX-->
<div class="pricingTable-sign-up">
<a href="#" class="btn btn-block btn-default">sign up</a>
</div><!-- BUTTON BOX-->
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="pricingTable">
<div class="pricingTable-header">
<span class="heading">
<h3>Standard</h3>
</span>
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
.pricingTable{
text-align: center;
background: #727cb6;
padding-top: 5px;
transition: all 0.5s ease-in-out 0s;
}
.pricingTable > .pricingTable-header{
color:#fff;
background: #273238;
height: 190px;
position: relative;
transition: all 0.5s ease 0s;
}
.pricingTable > .pricingTable-header:after{
content: "";
border-bottom: 40px solid #727cb6;
border-left: 263px solid transparent;
position: absolute;
right:0px;
bottom: 0px;
}
.pricingTable:hover .pricingTable-header{
height: 230px;
transition: all 0.5s ease 0s;
}
.pricingTable-header > .heading{
display: block;
padding: 20px 0;
}
.heading > h3{
margin: 0;
text-transform: uppercase;
}
.pricingTable-header > .price-value{
display: block;
font-size: 60px;
line-height: 60px;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: