Merge pull request #10 from mvillis/add-animate-dependencies

added missing animate.css dependencies
This commit is contained in:
igorkofman
2015-09-20 13:11:48 -07:00
3 changed files with 38 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
@keyframes fadeInLeft {
from {
opacity: 0;
transform: translate3d(-100%, 0, 0);
}
100% {
opacity: 1;
transform: none;
}
}
.fadeInLeft {
animation-name: fadeInLeft;
}

View File

@@ -0,0 +1,15 @@
@keyframes fadeInRight {
from {
opacity: 0;
transform: translate3d(100%, 0, 0);
}
100% {
opacity: 1;
transform: none;
}
}
.fadeInRight {
animation-name: fadeInRight;
}

View File

@@ -0,0 +1,8 @@
@keyframes fadeOut {
from {opacity: 1;}
100% {opacity: 0;}
}
.fadeOut {
animation-name: fadeOut;
}