Commit 7e0ee53b by 高淑倩

add: breathe

parent 6d1d1ef4
......@@ -1302,4 +1302,24 @@ a {
.point_color {
color: #05C35B
}
.breathe-btn {
box-shadow:0 1px 2px rgba(0,0,0,.3);
overflow:hidden;
background-image:-webkit-gradient(linear,left top,left bottom,from(#FF3333 ),to(#F85B5B));
-webkit-animation-timing-function:ease-in-out;
-webkit-animation-name:breathe;
-webkit-animation-duration:2700ms;
-webkit-animation-iteration-count:infinite;
-webkit-animation-direction:alternate;
}
@-webkit-keyframes breathe {
0% {
opacity:.6;
box-shadow:0 1px 2px rgba(255,255,255,0.1);
}
100% {
opacity:1;
box-shadow:0 1px 10px rgba(255, 51, 51, 1);
}
}
\ No newline at end of file
......@@ -72,4 +72,4 @@
}
.total-points {
font-size: 48rpx;
}
\ 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