Skip to content

Instantly share code, notes, and snippets.

@StMotorSpark
Created April 9, 2020 13:36
Show Gist options
  • Select an option

  • Save StMotorSpark/0b8651c8a2a03d27f3292d0eace3f676 to your computer and use it in GitHub Desktop.

Select an option

Save StMotorSpark/0b8651c8a2a03d27f3292d0eace3f676 to your computer and use it in GitHub Desktop.
Adding in the keyframe animations
@keyframes animateSlideOut {
0% {
margin-left: 0px;
}
100% {
margin-left: -325px;
}
}
.slideOut {
animation: animateSlideOut 0.8s;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment