1. <div class="zoom-in-out-box"></div>
    1. .zoom-in-out-box {
    2. margin: 24px;
    3. width: 50px;
    4. height: 50px;
    5. background: #f50057;
    6. animation: zoom-in-zoom-out 1s ease infinite;
    7. }
    8. @keyframes zoom-in-zoom-out {
    9. 0% {
    10. transform: scale(1, 1);
    11. }
    12. 50% {
    13. transform: scale(1.5, 1.5);
    14. }
    15. 100% {
    16. transform: scale(1, 1);
    17. }
    18. }