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

自闭症网瘾萝莉.ら 提交于 2019-12-18 07:24:36

问题


I've got a platinium plan in Big Cartel. I'm happy with the design of the site but would like to integrate an internal zoom on each product when mouse rolls over the product. I've found Wordpress options but I was wondering if it's possible in Big Cartel and what was the process to follow?


回答1:


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!



来源:https://stackoverflow.com/questions/22640408/can-i-integrate-an-internal-zoom-on-my-products-in-my-big-cartel-store

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