This is demo store you can't place order here...

Menu

Home > Samsung Galaxy Tab S6 Lite 26.31 cm (10.4 inch), S-Pen in Box, Slim and Light, Dolby Atmos Sound, 4 GB RAM, 64 GB ROM, Wi-Fi Tablet, Oxford Grey

Social

Samsung Galaxy Tab S6 Lite 26.31 cm (10.4 inch), S-Pen in Box, Slim and Light, Dolby Atmos Sound, 4 GB RAM, 64 GB ROM, Wi-Fi Tablet, Oxford Grey

27999.00 - 28999.00

26.31 Centimeters (10.4-inch) TFT with 2000 x 1200 pixels resolution, 16M color support Ergonomic S-Pen included in box 8MP primary camera | 5MP front facing camera Dual Speaker with Dolby Atmos Andoid 10 operating system with 2.3GHz Exynos9611 Octa Core processor 4GB RAM, 64GB internal memory expandable up to 1TB 7,040mAH lithium-ion battery

Category :

26.31 Centimeters (10.4-inch) TFT with 2000 x 1200 pixels resolution, 16M color support Ergonomic S-Pen included in box 8MP primary camera | 5MP front facing camera Dual Speaker with Dolby Atmos Andoid 10 operating system with 2.3GHz Exynos9611 Octa Core processor 4GB RAM, 64GB internal memory expandable up to 1TB 7,040mAH lithium-ion battery

} catch (error) { console.error('Error initializing zoom:', error); } } // Function to initialize zoom on a single image function initSingleImageZoom($img) { try { console.log('Initializing zoom for image:', $img.attr('src')); // Initialize zoom with larger magnifier and white background $img.imagezoomsl({ zoomrange: [2, 6], magnifiersize: [350, 350], magnifierpos: 'right', cursorshade: true, cursorshadecolor: '#ffffff', cursorshadeopacity: 0.3, cursorshadeborder: '1px solid #ddd', magnifierborder: '2px solid #ccc', magnifiereffectanimate: 'fadeIn', zoomstart: 2, stepzoom: 0.3, leftoffset: 20, rightoffset: 20, switchsides: true, showstatus: false, disablewheel: false }); $img.data('zoom-initialized', true); console.log('Zoom initialized successfully for image'); } catch (error) { console.error('Error initializing single image zoom:', error); } } // Wait for all scripts and images to load before initializing zoom $(window).on('load', function() { console.log('Window fully loaded, initializing zoom...'); setTimeout(function() { initImageZoom(); }, 500); }); // Fallback initialization after DOM ready setTimeout(function() { console.log('Fallback zoom initialization...'); initImageZoom(); }, 2000); // Re-initialize zoom when Bootstrap tabs are switched $(document).on('shown.bs.tab', 'a[data-bs-toggle="tab"]', function(e) { console.log('Tab switched, reinitializing zoom...'); setTimeout(function() { initImageZoom(); }, 300); }); // Handle window resize with debouncing var resizeTimeout; $(window).on('resize', function() { clearTimeout(resizeTimeout); resizeTimeout = setTimeout(function() { console.log('Window resized, reinitializing zoom...'); initImageZoom(); }, 500); }); console.log('Zoom functionality setup complete'); } })();