| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- @-webkit-keyframes line-scale-pulse-out-rapid {
- 0% {
- -webkit-transform : scaley(1);
- transform : scaley(1);
- }
- 80% {
- -webkit-transform : scaley(0.3);
- transform : scaley(0.3);
- }
- 90% {
- -webkit-transform : scaley(1);
- transform : scaley(1);
- }
- }
- @-moz-keyframes line-scale-pulse-out-rapid {
- 0% {
- -moz-transform : scaley(1);
- transform : scaley(1);
- }
- 80% {
- -moz-transform : scaley(0.3);
- transform : scaley(0.3);
- }
- 90% {
- -moz-transform : scaley(1);
- transform : scaley(1);
- }
- }
- @-o-keyframes line-scale-pulse-out-rapid {
- 0% {
- -o-transform : scaley(1);
- transform : scaley(1);
- }
- 80% {
- -o-transform : scaley(0.3);
- transform : scaley(0.3);
- }
- 90% {
- -o-transform : scaley(1);
- transform : scaley(1);
- }
- }
- @keyframes line-scale-pulse-out-rapid {
- 0% {
- -webkit-transform : scaley(1);
- -moz-transform : scaley(1);
- -o-transform : scaley(1);
- transform : scaley(1);
- }
- 80% {
- -webkit-transform : scaley(0.3);
- -moz-transform : scaley(0.3);
- -o-transform : scaley(0.3);
- transform : scaley(0.3);
- }
- 90% {
- -webkit-transform : scaley(1);
- -moz-transform : scaley(1);
- -o-transform : scaley(1);
- transform : scaley(1);
- }
- }
- .line-scale-pulse-out-rapid > div {
- background-color : #55595C;
- width : 4px;
- height : 3.45rem;
- border-radius : 2px;
- margin : 2px;
- -webkit-animation-fill-mode : both;
- -moz-animation-fill-mode : both;
- -o-animation-fill-mode : both;
- animation-fill-mode : both;
- display : inline-block;
- vertical-align : middle;
- -webkit-animation : line-scale-pulse-out-rapid 0.9s -0.5s infinite cubic-bezier(0.11, 0.49, 0.38, 0.78);
- -moz-animation : line-scale-pulse-out-rapid 0.9s -0.5s infinite cubic-bezier(0.11, 0.49, 0.38, 0.78);
- -o-animation : line-scale-pulse-out-rapid 0.9s -0.5s infinite cubic-bezier(0.11, 0.49, 0.38, 0.78);
- animation : line-scale-pulse-out-rapid 0.9s -0.5s infinite cubic-bezier(0.11, 0.49, 0.38, 0.78);
- }
- .line-scale-pulse-out-rapid > div:nth-child(2), .line-scale-pulse-out-rapid > div:nth-child(4) {
- -webkit-animation-delay : -0.25s !important;
- -moz-animation-delay : -0.25s !important;
- -o-animation-delay : -0.25s !important;
- animation-delay : -0.25s !important;
- }
- .line-scale-pulse-out-rapid > div:nth-child(1), .line-scale-pulse-out-rapid > div:nth-child(5) {
- -webkit-animation-delay : 0s !important;
- -moz-animation-delay : 0s !important;
- -o-animation-delay : 0s !important;
- animation-delay : 0s !important;
- }
|