Pular para o conteúdo
Host2b

Barra de Anuncio Animado - Script Nuvemshop

Por fernandoPublicado em 7 dez 2024

Script

.section-topbar {
	overflow: hidden;
}

.section-topbar .social-icon {
	display: none;
}

.section-topbar .text-center {
	animation: moveTextDesktop 20s linear infinite;
	white-space: nowrap;
	text-align: unset;
	position: relative;
	display: inline-block;
}

@keyframes moveTextDesktop {
	from {
transform: translateX(100%);
}

	to {
transform: translateX(-100%);
}
}

@media (max-width:768px) {
	.section-topbar .text-center {
		animation: moveTextMobile 10s linear infinite;
	}
	
	@keyframes moveTextMobile {
		from {
transform: translateX(80%);
}

		to {
transform: translateX(-80%);
}
	}
}