Free shipping

TV Stand for 80 inch TVs, HSUNNS Contemporary High Glossy TV Cabinet Entertainment Center with RGB Lights | Timing Function | APP Control | 2 Cabinets, TV Media Console for Living Room, Black

$135.00
Quantity
SKU: AUUBK-GI78813W679-TVstand02
Description

2023 LATEST LED TV STAND FOR UP TO 80" TVS, APP CONTROL LIGHTS, WITH TIMING FUNCTION AND MUSIC FUNCTION 

HSUNNS LED TV cabinet adopts the latest design of mobile phone remote control for TV cabinet lighting, including light color, light mode, flashing speed, and so on. Great minimalist and central entertainment feature RGB backlights with remote control to create a fashionable and romantic atmosphere no matter day or night. The high-gloss entertainment center has a modern minimalist design with oversized storage space, perfectly match any style of room decoration, and is very suitable for farmhouses, living rooms, bedrooms, and offices, also can be used as a media console, entertainment center, and tv table, meeting your various needs.

SPECIFICATION: 

  • Item: HSUNNS White Glossy TV Stand
  • Color: White / Black
  • Material: UV high glossy coated Particle board or Chipboard 
  • Product Size: 70.87*15.75*19.69inchs
  • Package Size: 75.98*20.27*6.49inchs
  • Net Weight: 73.85lbs
  • Gross Weight: 78.27lbs
  • Load-bearing: 100KG/220lbs
  • Support: Up to 80 inches of TVs
  • Lights Control: Remote / App Control

PACKAGE INCLUDES: 

  • 1 x LED TV Cabinet 
  • 1 x Remote Control  
  • 1 x User Manual

NOTED:  

  • Suggest TV for 50/55/60/65/70/80 in tv. (Up to 80 inches TVs)
  • Due to manual measurement, there may be some reasonable size errors.  
  • Due to the lighting or the computer resolution, there may be slightly different photos in terms of color. 
  • HIGH GLOSSY TV CABINET -- Simple high gloss makes this TV stand both exclusive and durable, adding a modern touch to most home decorations. The LED TV cabinet in the entertainment center uses an app to control the lights, no matter which room you are in, you can easily change the light's color and mode, and decorate your home colorful and beautiful.
  • APP / REMOTE CONTROL LIGHTS -- HSUNNS TV media console adopts a remote and app to control the lights of the TV stand. With the remote control, you can freely control the color-changing lights with 16 million colors, experience the timing function, and have 28 Dynamic modes, you can also DIY your unique color, making your home colorful and beautiful. 
  • TV STAND UP FOR 80 INCH TVS -- Dimensions: 70.87x15.75x19.69 inches, capable of accommodating up to 80inch TVs. HSUNNS TV stand is comprised of 3 open shelves and 2 cabinets with metal handles, which meet your storage requirements and improve space utilization. 
  • PREMIUM ENTERTAINMENT CENTER -- The TV entertainment center is made of premium chipboard, and high-quality hardware, which is scratch-proof, waterproof, and easy to maintain. The high gloss finish with simple lines makes the TV table look great in different home decor styles, it not only except for serving as a TV stand in your living room, bedroom, or office but also can be used as a display table or a storage cabinet wherever you need it. 
  • QUICKLY ASSEMBLY -- All the parts are labeled, and all hardware is included for stress-free assembly. If you have any questions, plz feel free to contact us by email directly.  
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.