Skip to content

Instantly share code, notes, and snippets.

@wcadap
Last active August 29, 2015 14:02
Show Gist options
  • Save wcadap/67c656b40162d1d185da to your computer and use it in GitHub Desktop.
Save wcadap/67c656b40162d1d185da to your computer and use it in GitHub Desktop.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Responsive CSS Flip Animation</title>
<link href="CSS/BootStrap3.1/bootstrap.min.css" type="text/css" rel="stylesheet" />
<link href="CSS/Site.css" type="text/css" rel="stylesheet" />
</head>
<body>
<header>
<div class="navbar navbar-inverse" role="navigation">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="#">Responsive CSS Flip Animation</a>
</div>
</div>
</div>
</header>
<div class="container">
<h3>Best Movies in 2013</h3>
<div class="row">
<div class="col-md-2 col-sm-2 col-xs-6">
<div class="flip_panel">
<div class="front card">
<img src="images/gravity.jpg" class="img-responsive img-rounded img-thumbnail"/>
</div>
<div class="back card">
<img src="images/back_img.jpg" class="img-responsive img-rounded img-thumbnail"/>
<div class="TextOnTop">
Genre: Sci-Fi
<br />
Rating:8.5
<br />
Director:
<br>
Alfonso Cuarón
</div>
</div>
</div>
</div>
</div>
</div> <!-- container -->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment