Pular para o conteúdo
Host2b

Botão pulsante - Script Nuvemshop

Por fernandoPublicado em 4 jun 2023

Script

.js-addtocart {
	animation: scaler .4 .5s;
	animation-direction: alternate;
	animation-iteration-count: infinite;
}

@keyframes scaler {
	0% {
		transform: scale(1);
	}
	
	100% {
		transform: scale(1.05);
	}
}