Commit 090c371d by doszhang

dos

parent b39d01ae
......@@ -112,6 +112,35 @@ video {
-webkit-animation: rubberBand 1s 1s both;
}
.title-block {
animation: scale 2s 2s linear infinite;
-webkit-animation: scale 2s 2s linear infinite;
}
@keyframes scale {
0%,
100% {
transform: scale(1);
}
50% {
transform: scale(1.2);
}
}
@-webkit-keyframes scale {
0%,
100% {
-webkit-transform: scale(1);
}
50% {
-webkit-transform: scale(1.2);
}
}
@-webkit-keyframes fadeInUp {
0% {
opacity: 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