Commit cf5a7e9e by doszhang

dos

parent 80d2be3f
...@@ -98,8 +98,8 @@ video { ...@@ -98,8 +98,8 @@ video {
} }
.block.animate { .block.animate {
animation: fadeInUp 1s ease-in-out backwards; animation: fadeIn 1s ease-in-out backwards;
-webkit-animation: fadeInUp 1s ease-in-out backwards; -webkit-animation: fadeIn 1s ease-in-out backwards;
} }
.link-text { .link-text {
...@@ -117,6 +117,26 @@ video { ...@@ -117,6 +117,26 @@ video {
-webkit-animation: scale 2s 2s linear infinite; -webkit-animation: scale 2s 2s linear infinite;
} }
@-webkit-keyframes fadeIn {
0% {
opacity: 0
}
to {
opacity: 1
}
}
@keyframes fadeIn {
0% {
opacity: 0
}
to {
opacity: 1
}
}
@keyframes scale { @keyframes scale {
0%, 0%,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment