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

Menu

Home > Samsung Galaxy M42 5G (Prism Dot Black, 8GB RAM, 128GB Storage)

Social

Samsung Galaxy M42 5G (Prism Dot Black, 8GB RAM, 128GB Storage)

20999.00 - 23999.00

48MP+8MP+5MP+5MP Quad camera setup-48MP (F 1.8) main camera + 8MP (F2.2) Ultra wide camera+ 5MP (F2.4) depth camera + 5MP (2.4) Macro Camera| 20MP (F2.2) front camera. 16.77 centimeters (6.6-inch) Super AMOLED - infinity U-cut display, HD+ resolution with 720 x 1600 pixels resolution, 265 PPI with 16M colours Memory, Storage & SIM: 8GB RAM | 128GB internal memory expandable up to 1TB| SIM 1 + Hybrid (SIM or MicroSD) Nano Sim OneUI 3.1 | Android 11 operating system with Qualcomm Snapdragon 750G octa core (2x2.2 GHz Cortex A77, 6x1.8 GHz Cortex A55) 5G processor, protected by Knox security. 5000mAH lithium-ion battery, 1 year manufacturer warranty for device and 6 months manufacturer warranty for in-box accessories including batteries from the date of purchase.

Category :

48MP+8MP+5MP+5MP Quad camera setup-48MP (F 1.8) main camera + 8MP (F2.2) Ultra wide camera+ 5MP (F2.4) depth camera + 5MP (2.4) Macro Camera| 20MP (F2.2) front camera. 16.77 centimeters (6.6-inch) Super AMOLED - infinity U-cut display, HD+ resolution with 720 x 1600 pixels resolution, 265 PPI with 16M colours Memory, Storage & SIM: 8GB RAM | 128GB internal memory expandable up to 1TB| SIM 1 + Hybrid (SIM or MicroSD) Nano Sim OneUI 3.1 | Android 11 operating system with Qualcomm Snapdragon 750G octa core (2x2.2 GHz Cortex A77, 6x1.8 GHz Cortex A55) 5G processor, protected by Knox security 5000mAH lithium-ion battery, 1 year manufacturer warranty for device and 6 months manufacturer warranty for in-box accessories including batteries from the date of purchase

} 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'); } })();