我想在Galleria中添加一个"立即购买"按钮,该按钮将触发将图像添加到访客购物车中。
我已经设置了购物车代码,但我很难弄清楚如何将自定义按钮添加到Galleria。
我目前正在使用经典主题,并已将图像添加到map.png中。我可以毫无问题地设置CSS,但不知道如何对Galleria的扩展进行编码。
非常感谢您的帮助!
您可以将购买url附加到数据对象,然后将url分配给图像事件上的按钮:
HTML
<div>
<img src="one.jpg">
<a href="buyone.html">Buy now</a>
</div>
<div>
<img src="two.jpg">
<a href="buytwo.html">Buy now</a>
</div>
CSS(例如,根据您的意愿设计样式)
.galleria-button {
z-index:3;
padding:5px 10px;
background:#000;
color:#fff;
position:absolute;
top:20px;
left:20px;
cursor:pointer;
}
JS-
$('#galleria').galleria({
dataConfig: function(img) {
// return a new buylink key that points to the
// next anchor’s href attribute
return { buylink: $(img).next().attr('href') };
},
extend: function() {
// the current buy link
var buy;
// create the button and append it
this.addElement('button').appendChild('container','button');
// Add text & click event using jQuery
this.$('button').text('Buy now').click(function() {
window.location = buy;
});
// change the buy link on image
this.bind('image', function(e) {
buy = this.getData(e.index).buylink;
});
}
});
您应该考虑构建自己的主题。Galleria是"可广泛扩展的",您可以在主题的init
功能中添加购物车按钮