6ft Christmas Tree Artificial Full Xmas Trees with 150pcs LED,Green, for Holiday,Home,Office,Party Decoration,750 Branch Tips Metal Hinges & Foldable Base
6ft Christmas Tree Artificial Full Xmas Trees with 150pcs LED,Green, for Holiday,Home,Office,Party Decoration,750 Branch Tips Metal Hinges & Foldable Base
6ft Christmas Tree Artificial Full Xmas Trees with 150pcs LED,Green, for Holiday,Home,Office,Party Decoration,750 Branch Tips Metal Hinges & Foldable Base
6ft Christmas Tree Artificial Full Xmas Trees with 150pcs LED,Green, for Holiday,Home,Office,Party Decoration,750 Branch Tips Metal Hinges & Foldable Base
6ft Christmas Tree Artificial Full Xmas Trees with 150pcs LED,Green, for Holiday,Home,Office,Party Decoration,750 Branch Tips Metal Hinges & Foldable Base

6ft Christmas Tree Artificial Full Xmas Trees with 150pcs LED,Green, for Holiday,Home,Office,Party Decoration,750 Branch Tips Metal Hinges & Foldable Base

$90.99
$0.00
-$-90.99
Quantity
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Vendor by: Bekayaa
SKU: 1030SDS-LL-W1950125767
Decoration

6FT tree have 29pcs pinecone and 28pcs Red berries. there are no extra decorations on the tree. We leave the decorating up to you and your family. Accentuate different areas of your home, office or even a holiday party by customising your tree with garland, ornaments and more!

LED

6FT TREE HAVE 150PCS LED.We have UL588 and UL certificate.The string of lights comes in four colors.Eight functions.1.COMBINATION 2.IN WAVES 3.SEQJENTIAL 4.SLO GLO 5.CHASING/FLASH 6.SLOW FADE 7.TWINKLE/FLASH 8.STEADY ON
The string of lights is not pre-installed.

Structure

This tree features pre-attached, hinged branches that drop down for easy set-up and fold back for quick and convenient storage. Allow 45-60 minutes to shape the tree by pulling back the branches and pulling the tops apart.
  • ? HIGH-QUALITY--- Crafted with durable metal hinges and flame-retardant PVC branches that stand tall with the help of a sturdy metal base.Thick metal trunk and stand of this Christmas tree makes it possible that the tree can stay straight. It can add more excitement to your life.
  • ? Dense and Realistic PVC--- The leaves of this Christmas tree are made of high-quality PVC, making it look more real and full.Fully fluff the branches to provide a healthy, natural appearance, 4-foot tree with 308 tips help emulate a real Christmas tree.
  • ? Easy to Assemble ---This tree features pre-attached, hinged branches that drop down for easy set-up and fold back for quick and convenient storage. Allow 15-30 minutes to shape the tree by pulling back the branches and pulling the tops apart.
  • ? Sturdy Iron Stand --- Christmas tree uses metal stand instead of cheap plastic stand, the iron stand can absolutely provide stronger support for the Christmas tree and ensure stability. It can serve you for a long time.
  • ? Unlit Tree --- This is an unlit tree, except for the full branches and leaves, there are no extra decorations on the tree. We leave the decorating up to you and your family. Accentuate different areas of your home, office or even a holiday party by customising your tree with garland, lights, ornaments and more!
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.