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 39 40 41 42 43 44 45 46 47
| animation:mymove 5s infinite; -webkit-animation:mymove 5s infinite; animation-direction:alternate; animation-timing-function: ease-in-out;
-webkit-animation:mymove 5s infinite; -webkit-animation-direction:alternate; -webkit-animation-timing-function: ease-in-out;
@keyframes mymove { from {background-color:#56ccf2;} to {background-color: #74f9ff;} 0%{ transform: scale(1); } 25%{ transform: scale(1.1); } 50%{ transform: scale(1); } 75%{ transform: scale(1.1); }
} @-webkit-keyframes mymove /*Safari and Chrome*/ { 0%{ transform: scale(1); } 25%{ transform: scale(1.1); } 50%{ transform: scale(1); } 75%{ transform: scale(1.1); }· }
|