* { padding: 0px; margin: 0px; } .marker-anmi-camera{ background-image: url('../assets/imgs/marker_camera.png'); width: 25px; height: 25px; /* translate: -12px -0px; */ background-size: 100%; position: absolute; cursor: pointer; animation-name:myfirst; animation-duration:5s; animation-iteration-count:infinite; } .marker-anmi-mic{ background-image: url('../assets/imgs/marker_mic.png'); width: 25px; height: 25px; /* translate: -12px -0px; */ background-size: 100%; position: absolute; cursor: pointer; animation-name:myfirst; animation-duration:5s; animation-iteration-count:infinite; } @keyframes myfirst { 0% {transform: scale(50%)} 50% {transform: scale(100%)} 100% {transform: scale(50%)} }