Can I integrate an Internal zoom on my products in my big cartel store?

眉间皱痕 提交于 2019-11-29 13:08:46

Since you have a store on the Platinum plan that allows for code editing, you have quite a few options here. Most of the default Big Cartel themes have jQuery included so finding a plugin that uses jQuery would probably be your best bet.

Here's one example of a plugin: http://www.elevateweb.co.uk/image-zoom

With this example, you'd just need to upload their jquery.elevatezoom.js file to a separate server, and include it in your store's Layout file.

You can then edit the code on your individual Product page (using the Luna theme code as an example):

<img src="{{ image | product_image_url: "fullsize" }}" class="fade_in" alt="Image of {{ product.name | escape }}">

Can be changed to:

<img id="product_zoom" src="{{ image | product_image_url: "fullsize" }}" data-zoom-image="{{ image | product_image_url: "fullsize" }}" class="fade_in" alt="Image of {{ product.name | escape }}">

Then just use the following code to activate:

$("#product_zoom").elevateZoom();

Hope that helps!

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!