Skip to content

Instantly share code, notes, and snippets.

@danielmahal
Last active December 28, 2015 03:29
Show Gist options
  • Save danielmahal/7435239 to your computer and use it in GitHub Desktop.
Save danielmahal/7435239 to your computer and use it in GitHub Desktop.
<html>
<head>
<style>
.box {
width: 200px;
height: 200px;
background: blue;
transition: -webkit-transform 500ms linear;
}
.box:hover {
-webkit-transform: rotateZ(180deg);
}
</style>
</head>
<body>
<div class="box"></div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment