Commit 29625d27 by Chao Sun

动画

parent 88b19803
......@@ -190,6 +190,7 @@ ul li,ol li{
width: 100%;
margin: 0 auto;
z-index: 1;
animation: slowUp .5s ease both;
}
.toastContent{
......@@ -199,6 +200,7 @@ ul li,ol li{
height: 50%;
background-color: #fff;
z-index: 20;
animation: slowUp .5s ease both;
}
.toastContent.city{
margin: 0;
......@@ -277,4 +279,17 @@ ul li,ol li{
color: #fff;
text-align: center;
line-height: 60px;
}
\ No newline at end of file
animation: slowUp .5s ease both;
}
@keyframes slowUp {
0% {
-webkit-transform: translateY(100%);
transform: translateY(100%)
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0)
}
}
\ No newline at end of file
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 to comment