Re: movimientos en emojis

Solved

movimientos en emojis

Dec0rArte
Tourist
8 0 1

hola! es posible hacer ''rebotar'' el emoji de diamante ?

 

Captura de pantalla 2024-04-25 141934.png

 

web: https://decorartestore.com/

Accepted Solution (1)
theycallmemakka
Shopify Partner
1813 439 473

This is an accepted solution.

¡Hola! Claro, estaré encantado de ayudarte. Por favor, proporciona el código actualizado que deseas que revise y traduzca al español.

<style>
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

.collection.section-template--22439561101625__featured_collection_qNcKK6-padding h2.title.inline-richtext.h1.scroll-trigger.animate--slide-in:after {
    content: url(https://cdn.shopify.com/s/files/1/0419/8504/8729/files/diamond.svg?v=1714144694);
    display: inline-block;
    animation: bounce 1s infinite;
}
</style>

Support Me: Buy me a Coffee


For quick response - Message Me


Ping me at: theycallmemakka@gmail.com

View solution in original post

Replies 4 (4)

theycallmemakka
Shopify Partner
1813 439 473

Hola @Dec0rArte ,

 

Por favor, elimina el emoji de diamante del título y agrega el siguiente código. He añadido un diamante que rebota mediante CSS. Sigue estos pasos:

1) Ve a la Tienda en Línea
2) Edita el Código
3) Encuentra el archivo theme.liquid
4) Agrega el siguiente código justo arriba de la etiqueta </body>

<style>
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

.collection.section-template--22439561101625__featured_collection_qNcKK6-padding h2.title.inline-richtext.h1.scroll-trigger.animate--slide-in:after {
    content: "💎";
    display: inline-block;
    animation: bounce 1s infinite;
}

</style>

theycallmemakka_0-1714133162304.png

Si necesitas más ayuda para optimizar tu tienda, no dudes en comunicarte. Si encuentras útil esta información, un "Me gusta" sería muy apreciado. Y si esto resuelve el problema, ¡por favor, márquelo como solución!

 

Saludos cordiales,
Makka

Support Me: Buy me a Coffee


For quick response - Message Me


Ping me at: theycallmemakka@gmail.com

Dec0rArte
Tourist
8 0 1

hola makka muchas gracias por tu ayuda

tengo un problema, al agregar el código arriba de </body> no se realiza el cambio, me puedes ayudar?,  creo que estoy realizando mal un paso 

 

Captura de pantalla 2024-04-26 112223.png

theycallmemakka
Shopify Partner
1813 439 473

This is an accepted solution.

¡Hola! Claro, estaré encantado de ayudarte. Por favor, proporciona el código actualizado que deseas que revise y traduzca al español.

<style>
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

.collection.section-template--22439561101625__featured_collection_qNcKK6-padding h2.title.inline-richtext.h1.scroll-trigger.animate--slide-in:after {
    content: url(https://cdn.shopify.com/s/files/1/0419/8504/8729/files/diamond.svg?v=1714144694);
    display: inline-block;
    animation: bounce 1s infinite;
}
</style>

Support Me: Buy me a Coffee


For quick response - Message Me


Ping me at: theycallmemakka@gmail.com

Dec0rArte
Tourist
8 0 1

muchas gracias makka , ha funcionado!!