Created
September 2, 2012 23:43
-
-
Save dominickm/3605676 to your computer and use it in GitHub Desktop.
Wiggle Sample for Coder Radio
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@-webkit-keyframes wiggle { | |
0% { | |
-webkit-transform:rotate(4deg); | |
} | |
50% { | |
-webkit-transform:rotate(-4deg); | |
} | |
100% { | |
-webkit-transform:rotate(4deg); | |
} | |
} | |
.wiggle:hover { | |
-webkit-animation: wiggle 0.5s infinite; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<LINK REL=StyleSheet HREF="wiggle.css" TYPE="text/css" MEDIA=screen> | |
<head> | |
<title>Wiggle, wiggle, wiggle, yeah!</title> | |
</head> | |
<body> | |
<img class="wiggle" src="cjt1.png" alt="buy Code Journal"> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment