Skip to content

Instantly share code, notes, and snippets.

@dominickm
Created September 2, 2012 23:43
Show Gist options
  • Save dominickm/3605676 to your computer and use it in GitHub Desktop.
Save dominickm/3605676 to your computer and use it in GitHub Desktop.
Wiggle Sample for Coder Radio
@-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;
}
<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