Skip to content

Instantly share code, notes, and snippets.

View PhilipWestfall's full-sized avatar

Philip Westfall PhilipWestfall

View GitHub Profile
<h1 class="animated infinite bounce delay-2s">Hello!</h1>
.elementNAME {
animation-duration: 3s;
animation-delay: 2s;
animation-iteration-count: infinite;
}
<!-- Manually uploaded CSS file. -->
<head>
<link rel="stylesheet" href="animate.min.css">
</head>
<!-- CDN version of Animate.css -->
<head>
<link rel="stylesheet"href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.0/animate.min.css">
@-webkit-keyframes slideInLeft {
from {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
h3 {
animation-duration: 8s;
animation-name: slidein;
animation-iteration-count: infinite;
}
@keyframes slidein {
0% {
margin-left: 0%;
}