Skip to content

Instantly share code, notes, and snippets.

@Chuloo
Created March 31, 2022 12:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Chuloo/53ab0d02c9bed53a3fc025be68323b2c to your computer and use it in GitHub Desktop.
Save Chuloo/53ab0d02c9bed53a3fc025be68323b2c to your computer and use it in GitHub Desktop.
Product image zoom lens
<template>
<div>
<p class="text-center text-4xl text-gray-900 font-bold mt-8 pt-8">
E-commerce product image zoom lens in Nuxtjs
</p>
</div>
</template>
<script>
export default {
name: "ProductImage",
data() {
return {
images: {
thumbs: [
{
id: 1,
url: "https://res.cloudinary.com/olanetsoft/image/upload/v1647642978/h1-r3.jpg",
},
{
id: 2,
url: "https://res.cloudinary.com/olanetsoft/image/upload/v1647644372/h3-r3.jpg",
},
{
id: 3,
url: "https://res.cloudinary.com/olanetsoft/image/upload/v1647644758/h4-r3.jpg",
},
],
normal_size: [
{
id: 1,
url: "https://res.cloudinary.com/olanetsoft/image/upload/v1647642886/h1-r2.jpg",
},
{
id: 2,
url: "https://res.cloudinary.com/olanetsoft/image/upload/v1647644372/h3-r2.jpg",
},
{
id: 3,
url: "https://res.cloudinary.com/olanetsoft/image/upload/v1647644758/h4-r2.jpg",
},
],
large_size: [
{
id: 1,
url: "https://res.cloudinary.com/olanetsoft/image/upload/v1647642886/h1-r1.jpg",
},
{
id: 2,
url: "https://res.cloudinary.com/olanetsoft/image/upload/v1647644372/h3-r1.jpg",
},
{
id: 3,
url: "https://res.cloudinary.com/olanetsoft/image/upload/v1647644758/h4-r1.jpg",
},
],
},
zoomerOptions: {
zoomFactor: 3, // scale for zoomer
pane: "pane", // three type of pane ['pane', 'container-round', 'container']
hoverDelay: 300, // how long after the zoomer take effects
move_by_click: false, // move image by click thumb image or by mouseover
scroll_items: 5, // thumbs for scroll
choosed_thumb_border_color: "#bbdefb", // choosed thumb border color
scroller_button_style: "line",
scroller_position: "left",
zoomer_pane_position: "right",
},
};
},
};
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment