uploaded everything again...

This commit is contained in:
Harrison Deng
2016-10-27 15:33:41 -05:00
commit 02090d5112
67 changed files with 17305 additions and 0 deletions

View File

@@ -0,0 +1,148 @@
.entry {
animation: entry 2s ease 1 normal;
}
.entry-left {
animation: entry-left 4s ease 1 normal;
}
.entry-right {
animation: entry-right 4s ease 1 normal;
}
.entry-bottom {
animation: entry-bottom 4s ease 1 normal;
}
.typingAnimation {
overflow: hidden;
white-space: nowrap;
width: 8em;
animation:
typing 5s;
}
/* this is entering transition from left*/
@-webkit-keyframes entry-left {
from {
opacity: 0;
left: -800px;
}
}
@-moz-keyframes entry-left {
from {
opacity: 0;
left: -800px;
}
}
@-o-keyframes entry-left {
from {
opacity: 0;
left: -800px;
}
}
@keyframes entry-left {
from {
opacity: 0;
left: -800px;
}
}
/* this is entering transition from bottom */
@-webkit-keyframes entry-bottom {
from {
opacity: 0;
bottom: -600px;
}
}
@-moz-keyframes entry-bottom {
from {
opacity: 0;
bottom: -600px;
}
}
@-o-keyframes entry-bottom {
from {
opacity: 0;
bottom: -600px;
}
}
@keyframes entry-bottom {
from {
opacity: 0;
bottom: -600px;
}
}
/* this is entering transition from right*/
@-webkit-keyframes entry-right {
from {
opacity: 0;
right: -800px;
}
}
@-moz-keyframes entry-right {
from {
opacity: 0;
right: -800px;
}
}
@-o-keyframes entry-right {
from {
opacity: 0;
right: -800px;
}
}
@keyframes entry-right {
from {
opacity: 0;
right: -800px;
}
}
/* this is entering transition*/
@-webkit-keyframes entry {
from {
opacity: 0;
}
}
@-moz-keyframes entry {
from {
opacity: 0;
}
}
@-o-keyframes entry {
from {
opacity: 0;
}
}
@keyframes entry {
from {
opacity: 0;
}
}
/*Typing*/
@-webkit-keyframes typing {
from {
width: 0px;
}
}
@-moz-keyframes typing {
from {
width: 0px;
}
}
@-o-keyframes typing {
from {
width: 0px;
}
}
@keyframes typing {
from {
width: 0px;
}
}