Hi, I’m wondering if anyone knows a code to create a button animation similar to that of https://vixrshop.com/. When I hover over the button, it should have a sliding animation that transforms the white button into a white bordered button with white text.
I’m using the current Dawn theme, but this isn’t an animation option
Thank you in advance!
Hi @Tokyo_Prodigy
Dan here from Ryviu: Product Reviews & QA app.
Could you share your store URL so I can check and give the code to do that?
It’s for the “add to cart” button on the product page: https://2580d7-4.myshopify.com/products/love-is-love-cropped-heavyweight-tee
Password: helloworld
Thank you in advance!
Hi, please add this code at the bottom of your base.css file
.product-form .product-form__submit {
background: linear-gradient(to right, #855832 50%, transparent 50%);
background-size: 200% 100%;
background-position: right bottom;
transition: all .5s ease-out;
}
.product-form .product-form__submit:hover {
background-position: left bottom;
color: #fff;
}