hover.css

by Roberto Apasajja

HTML

<link rel="stylesheet" href="https://ianlunn.github.io/Hover/css/hover.css">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css">
		<h1>Hover.css <a href="https://github.com/IanLunn/Hover/releases" class="sup" title="View release history">v2</a></h1>

		<div class="effects">

			<h2>2D Transitions</h2>

			<a href="#" class="hvr-grow">Grow</a>
			<a href="#" class="hvr-shrink">Shrink</a>
			<a href="#" class="hvr-pulse">Pulse</a>
			<a href="#" class="hvr-pulse-grow">Pulse Grow</a>
			<a href="#" class="hvr-pulse-shrink">Pulse Shrink</a>
			<a href="#" class="hvr-push">Push</a>
			<a href="#" class="hvr-pop">Pop</a>
			<a href="#" class="hvr-bounce-in">Bounce In</a>
			<a href="#" class="hvr-bounce-out">Bounce Out</a>
			<a href="#" class="hvr-rotate">Rotate</a>
			<a href="#" class="hvr-grow-rotate">Grow Rotate</a>
			<a href="#" class="hvr-float">Float</a>
			<a href="#" class="hvr-sink">Sink</a>
			<a href="#" class="hvr-bob">Bob</a>
			<a href="#" class="hvr-hang">Hang</a>
			<a href="#" class="hvr-skew">Skew</a>
			<a href="#" class="hvr-skew-forward">Skew Forward</a>
			<a href="#" class="hvr-skew-backward">Skew Backward</a>
			<a href="#" class="hvr-wobble-horizontal">Wobble Horizontal</a>
			<a href="#" class="hvr-wobble-vertical">Wobble Vertical</a>
			<a href="#" class="hvr-wobble-to-bottom-right">Wobble To Bottom Right</a>
			<a href="#" class="hvr-wobble-to-top-right">Wobble To Top Right</a>
			<a href="#" class="hvr-wobble-top">Wobble Top</a>
			<a href="#" class="hvr-wobble-bottom">Wobble Bottom</a>
			<a href="#" class="hvr-wobble-skew">Wobble Skew</a>
			<a href="#" class="hvr-buzz">Buzz</a>
			<a href="#" class="hvr-buzz-out">Buzz Out</a>


			<h2>Background Transitions</h2>

			<a href="#" class="hvr-fade">Fade</a>
			<a href="#" class="hvr-sweep-to-right">Sweep To Right</a>
			<a href="#" class="hvr-sweep-to-left">Sweep To Left</a>
			<a href="#" class="hvr-sweep-to-bottom">Sweep To...

CSS

/*
 * Hover.css - Demo Page
 * Author: Ian Lunn @IanLunn
 * Author URL: http://ianlunn.co.uk/
 * Github: https://github.com/IanLunn/Hover

 * Made available under a MIT License:
 * http://www.opensource.org/licenses/mit-license.php

 * Hover.css Copyright Ian Lunn 2014.
 */

/**
 * The following are default styles for the demo page,
 * you don't need to include these on your own site.
 */

@import url(http://fonts.googleapis.com/css?family=Roboto);

body {
  margin: 0 auto;
  max-width: 800px;
  padding: 40px 20px 20px 20px;
  font-family: sans-serif;
  color: #333;
  line-height: 140%;
}

.browsehappy {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    padding: 1em;
    background: black;
    color: white;
    text-align: center;
}

img {
  border: none;
}

small {
    display: block;
}

p,
[class^="hvr-"] {
    font-family: 'Roboto', sans-serif;
}

[class^="hvr-"] {
  /*display: inline-block;*/
  /*vertical-align: middle;*/
  margin: .4em;
  padding: 1em;
  cursor: pointer;
  background: #e1e1e1;
  text-decoration: none;
  color: #666;
  /* Prevent highlight colour when element is tapped */
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

.aligncenter {
  text-align: center;
}

.sup {
    vertical-align: super;
    margin-left: -1em;
    padding: .21875em;
    line-height: 100%;
    font-size: .21875em;
    border: #eee solid 1px;
    border-radius: 4px;
    color: inherit;
}

.sup:hover {
    background: #eee;
}

a {
    color: #2098D1;
    text-decoration: none;
}

.footer a:hover,
.tutorial:hover {
    color: #207AD1;
}

.tutorial {
  display: inline-block;
  font-size: .8em;
  font-weight: bold;
}

.tutorial:hover,
.tutorial:focus,
.tutorial:active {
  text-decoration: none;
}

.intro {
  max-width: 680px;
  margin: 20px auto 0 auto;
}

.button.cta {
  display: inline-block;
  position: relative;
  margin: 1.2em 0 1em 0;
  padding: 1em;
  background: #2098D1;
  border: none;
  text-decoration: none;
  font-weight: 700;
  color:...