Commit f51e5692 by doszhang

dos

parent 56b60d89
...@@ -91,6 +91,12 @@ input::-webkit-input-placeholder { ...@@ -91,6 +91,12 @@ input::-webkit-input-placeholder {
background-size: 100%; background-size: 100%;
} }
.home-page .title {
transform-origin: 62.29% 81.8%;
animation: scale 0.5s 0.6s ease-in backwards;
-webkit-animation: scale 0.5s 0.6s ease-in backwards;
}
.home-page .tips.animate { .home-page .tips.animate {
text-align: center; text-align: center;
color: #f00; color: #f00;
...@@ -99,6 +105,16 @@ input::-webkit-input-placeholder { ...@@ -99,6 +105,16 @@ input::-webkit-input-placeholder {
-webkit-animation: tips 3.8s linear infinite; -webkit-animation: tips 3.8s linear infinite;
} }
@keyframes scale {
0% {
transform: scale(0);
}
100% {
transform: scale(1);
}
}
@keyframes tips { @keyframes tips {
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