Skip to content

Instantly share code, notes, and snippets.

@tjoskar
Last active December 20, 2015 15:09
Show Gist options
  • Save tjoskar/6152003 to your computer and use it in GitHub Desktop.
Save tjoskar/6152003 to your computer and use it in GitHub Desktop.
Simpel corner to coner animation
.holder {
position: absolute;
left: 0;
top: 0;
background: red;
white-space: nowrap;
-webkit-animation: frames 30s linear;
}
@-webkit-keyframes frames {
0% {
left: 0;
top: 0;
}
25% {
left: 100%;
top: 0;
}
50% {
left: 100%;
top: 100%
}
75% {
left: 0;
top: 100%
}
100% {
left: 0;
top: 0;
}
}
<div class="holder">
<span>Message</span>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment