iOS like tilting

by Johan Vandeplas

HTML

<p><b>Note:</b> This does not work in Internet Explorer.</p>

<div></div>

CSS

div
{
width:100px;
height:100px;
background:red;
-webkit-animation: myfirst .5s infinite linear;
}
@-webkit-keyframes myfirst /* Safari and Chrome */
{
  0% {
    -webkit-transform: rotate(-2deg);
  }
  50%{
    -webkit-transform: rotate(2deg);
  }
  100% {
    -webkit-transform: rotate(-2deg);
  }
}