Skip to content

Instantly share code, notes, and snippets.

@codeinvain
Created July 3, 2010 20:25
Show Gist options
  • Save codeinvain/462809 to your computer and use it in GitHub Desktop.
Save codeinvain/462809 to your computer and use it in GitHub Desktop.
div {
animation-name: 'diagonal-slide';
animation-duration: 5s;
animation-iteration-count: 10;
}
@keyframes 'diagonal-slide' {
from {
left: 0;
top: 0;
}
to {
left: 100px;
top: 100px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment