VIVISPECIAL Vanity Set with Lighted Mirror, 39.3'' Makeup Vanity with 3 Lighting Colors & Power Outlet, 5 Drawers, Hidden Shelves, White Vanity Set with Stool for Bedroom

$219.99
Quantity
Share the love
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Description

šŸ”·Features:

✨If you are looking for an exquisite best-in-class dressing table for your home, you must not miss this elegant classic dressing table set. It comes with the large spacious table top, 5 drawers, hidden sliding shelves, provide enough space for you to place items. Built-in charging station. The vanity light has 3 different settings: Warm Yellow, Warm White and Cool White light colors. The tabletop is made of high-quality MDF material with a smooth finish that is easy to clean. So buy this awesome-looking dressing table to make your room look richer and more beautiful.

šŸ”·Specifications:

Material: Wood
Color: White
Room Type: Bedroom, Living Room
Product Size: 39.3"L*15.7"W*55.1"H

šŸ”·Package List:

1 x Vanity Set
1 x Accessory Kit
1 x Instructions

ā—ā— Click on the Add To Cart button now

šŸ”·Note:

1.Please allow 0-1cm error due to manual measurement. Pls, make sure you do not mind before you bid.

2.Due to the difference between different monitors, the picture may not reflect the actual colour of the item. Thank you!

⚔After-Sales Service: Please feel free to contact with us if you have any problems with this product.

  • 怐Plenty of Space怑Vanity Desk Dimensions: 39.37"L*15.74"W*55.2"H, the large spacious table top, 5 drawers, hidden sliding shelves, provide enough space for you to place items, keep items organized easily Your cosmetics, jewelry and other items. The simple design of white and gold complements all kinds of furniture, simple and fashionable.
  • 怐Makeup Vanity with Lights in 3 Colors and Brightness Adjustable怑The vanity light has 3 different settings: Warm Yellow, Warm White and Cool White light colors. Flick touch the switch to change the color mode, long press the switch to adjust the brightness, providing a perfect lighting environment for hair styling, especially suitable for bedroom or professional dressing room as well as photography and video makeup needs.
  • 怐Vanity with Charging Station怑The dressing table is equipped with a built-in power supply, including 2 standard sockets and 2 USB ports, which can charge mobile phones, tablets or other electronic devices, and at the same time connect the hair dryer, which is more convenient and convenient to create a more perfect makeup.
  • 怐Great Gift for Female怑The dressing table is a must-have for every woman. An exquisite dressing table can make you feel better when you wake up and put on makeup every day. It is not only a tool for makeup, but also a place to show your personal style and taste. The dresser also makes a great gift for Valentine's Day, Birthday, Mother's Day or Christmas.
  • The vanity desk with white tabletop is made of medium-density fiberboard, and the bottom uses a horizontal support rod to enhance stability, with detailed installation instructions, each part has a label number, please follow the steps in the instructions. If any part is damaged, please notify the seller and we will send you a replacement part for free.
Customer Reviews
Here are what our customers say.
Write a Review
Customer Reviews
Wow you reached the bottom
Newest
Most liked
Highest ratings
Lowest ratings
×
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.