html 添加到购物车上悬停- Shopify

mutmk8jj  于 2023-04-27  发布在  其他
关注(0)|答案(1)|浏览(79)

试图有“添加到购物车”按钮作为悬停时,鼠标经过该产品。目前它是这样的盒子下面的每个产品。
这是一个简单的解决方案,还是我需要在Shopify后端进行更复杂的编码?

wtlkbnrh

wtlkbnrh1#

function main(){
document.getElementById('cart').style.color = 'white';
document.getElementById('cart').style.background-color = 'black';
document.getElementById('cart').style.translateY = '-50%';
document.getElementById('item').style.opacity = '24%';
document.getElementById('cart').style.opacity = '100%';
}
<div class = "item" onmouseover=main()>
<!--image,etc..
 give cart's id as cart
 give item's id as item
 -->
</div>

相关问题