"Information Card Flip"
Bootstrap 3.2.0 Snippet by ironprice91

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="//netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.2.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">
<h2>Info Card Flip</h2>
<!-- Info Card with social icons -->
<div class="info-card">
<div class="front">
<img class="card-image" src="http://i.imgur.com/QHxnyes.jpg?1">
</div>
<div class="back">
<h2>Gentlesir</h2>
<p>
Globally facilitate timely bandwidth vis-a-vis user friendly core competencies. Uniquely architect covalent e-tailers through viral Lorem ipsum dolor sit amet, con.
</p>
<div class="social">
<a href="#" class="social-icon facebook animate"><span class="fa fa-facebook"></span></a>
<a href="https://twitter.com/MichaelCanlas7" target="_blank" class=" social-icon twitter animate"><span class="fa fa-twitter"></span></a>
<a href="https://github.com/ironprice91" target="_blank" class=" social-icon github animate"><span class="fa fa-github-alt"></span></a>
</div>
</div>
</div>
<!-- Scrolling enabled for longer content -->
<div class="info-card">
<div class="front">
<img class="card-image" src="http://i.imgur.com/QHxnyes.jpg?1">
</div>
<div class="back">
<h2>Gentlesir</h2>
<p>
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(//fonts.googleapis.com/css?family=Lato:400,900);
@import url(//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css);
.info-card {
float: left;
margin: 10px;
-webkit-perspective: 600px;
}
.front, .back {
background: #FFF;
border-radius: 10px;
transition: -webkit-transform 1s;
-webkit-transform-style: preserve-3d;
-webkit-backface-visibility: hidden;
border: 1px solid black;
}
.front {
overflow: hidden;
width: 250px;
height: 330px;
position: absolute;
z-index: 1;
}
.back {
padding: 20px;
padding-top: 0px;
width: 250px;
height: 330px;
-webkit-transform: rotateY(-180deg);
overflow: scroll;
}
.info-card:hover .back {
-webkit-transform: rotateY(0);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments:

Avatar is sooo funny, I love it! Thats so much.

Abioveprincipium () - 4 years ago - Reply 0


I feel sorry for the avatar. he must have a sad life.

George Langham () - 9 years ago - Reply 0


Anyone know how to add tags to snippets? Sorry, I'm super new to bootsnipp haha

Michael Canlas () - 10 years ago - Reply 0


For now only the admin (me) can tag the featured snippets... Soon I'll give everyone ability to tag their snippets so that there will be less work for me, haha :)

maxsurguy () - 10 years ago - Reply 0


Good to know! Thanks :)

Michael Canlas () - 10 years ago - Reply 0