| | |
| | | height: 900px; */ |
| | | background-color: rgba(34,123,235,1); |
| | | box-sizing: border-box; |
| | | padding: 0 23px 42px 23px; |
| | | padding: 0 23px 23px 23px; |
| | | } |
| | | /* 避免Chrome浏览器看到Safari黑客 */ |
| | | @supports (-webkit-touch-callout: none) { |
| | |
| | | } |
| | | |
| | | .btn_ani { |
| | | animation-name: anim_scale; |
| | | animation-duration: 1.1s; |
| | | animation-iteration-count: infinite; |
| | | -webkit-animation: anim_scale 1.1s; |
| | | animation: anim_scale 1.1s; |
| | | -webkit-animation-iteration-count: infinite; |
| | | animation-iteration-count: infinite; |
| | | /* animation-name: anim_scale; |
| | | animation-duration: 1.1s; */ |
| | | /* animation-iteration-count: infinite; */ |
| | | } |
| | | |
| | | @-webkit-keyframes anim_scale { |
| | | 0% { |
| | | transform: scale(1); |
| | | } |
| | | 50% { |
| | | transform: scale(1.1); |
| | | } |
| | | 100% { |
| | | transform: scale(1); |
| | | } |
| | | } |
| | | |
| | | @keyframes anim_scale { |
| | | 0% { |
| | | scale: 1; |
| | | transform: scale(1); |
| | | } |
| | | 50% { |
| | | scale: 1.1; |
| | | transform: scale(1.1); |
| | | } |
| | | 100% { |
| | | scale: 1; |
| | | transform: scale(1); |
| | | } |
| | | } |
| | | } |