1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
| .breathe-btn { position: relative; width: 100px; height: 10px; margin-top: 20px; line-height: 40px; border: 1px solid #2b92d4; border-radius: 5px; color: #fff; font-size: 20px; text-align: center; cursor: pointer; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); overflow: hidden; background-image: -webkit-gradient( linear, left top, left bottom, from(#6cc3fe), to(#21a1d0) ); -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: 0.2; box-shadow: 0 1px 2px rgba(255, 255, 255, 0.1); } 100% { opacity: 1; border: 1px solid rgba(59, 235, 235, 1); box-shadow: 0 1px 30px rgba(59, 255, 255, 1); } }
|