<style> @-webkit-keyframes shake{ 0%{ opacity: 1; } 50%{ opacity: 0.5; } 100%{ opacity: 1; } } @keyframes shake{ 0%{ opacity: 1; } 50%{ opacity: 0.5; } 100%{ opacity: 1; } } .shake{ -webkit-animation: shake .2s infinite; animation: shake .2s infinite; } </style> <h1 class="shake">Hello Liaocheng!</h1>
转自:https://segmentfault.com/q/1010000011779312/a-1020000011779379