Egg Swing Chair With Waterproof Cushions

36 sold
$25.98
$125.95
-79%
Color:  Green
Quantity

Description

Unwind in style with this durable hanging egg chair featuring a PE rattan frame, nylon rope details, and a sturdy iron stand. Complete with waterproof cushions in five elegant colors, this swing chair adds a relaxing charm to your indoor or outdoor spaces.

What's Included?

  • Stand
  • Waterproof Cushions
Overall :78.7'' H X 37.8'' W X 37.8'' L 
Hammock :37.8'' W X 37.8'' D 
Overall Product Weight :59.52 lb. 

Features

  • Premium PE Rattan Frame: Weather-resistant PE rattan ensures durability and long-lasting use.
  • Comfortable Waterproof Cushions: Made with PP cotton filling, cushions offer plush seating and protection from the elements.
  • Versatile Color Options: Available in Green, Gray, Cream, Navy, and Beige to suit any decor style.
  • Sturdy Iron Stand: Solid iron frame provides stability, safety, and easy assembly.
  • Perfect for Any Space: Ideal for patios, balconies, living rooms, and gardens with a modern and timeless egg-shaped design.
  • Commercial Warranty Length: 30 Days
  • Overall Product Weight: 59.52
  • Assembly Required: Yes
  • Color: Navy
  • Cushion Color: Navy
  • Uniform Packaging and Labeling Regulations (UPLR) Compliant: No
  • Level of Assembly: Minimal Assembly Needed
  • Warranty Details: Inspection Required
  • Made to Order: No
  • Product Type: Porch Swing with Stand
  • Adjustable Canopy: No
  • Composite Wood Product (CWP): No
  • Lithium Battery: No
  • Hazardous Material / Dangerous Goods: No
  • Additional Tools Required (Not Included): Allen Wrench, Wrench
  • Estimated Time to Set Up: 15
  • Back Height - Seat to Top of Back: 44.1
  • Canada Product Restriction: No
  • Battery or Batteries Included: No
  • Imported: Yes
  • Hand Painted: No
  • Seat Frame Material: Metal, Polyethylene (PE) Wicker, Nylon
  • Inner Frame Material: Stainless Steel
  • Supplier Intended and Approved Use: Residential Use, Non Residential Use
  • UL 4041 - Safety Standard for Outdoor Furniture : No
  • Full or Limited Warranty: Limited
  • Cushion Durability: Water Resistant, Mold / Mildew Resistant, Fade Resistant, Stain Resistant, UV Resistant, Year Round Use, Weather Resistant
  • Durability: UV Resistant, Weather Resistant, Mold / Mildew Resistant, Fade Resistant, Waterproof, Scratch Resistant
  • Natural Variation Type: No Natural Variation
  • Adirondack Back: No
  • Purposeful Distressing Type: No Distressing
  • Frame Included: Yes
  • Hanging Chain Included: Yes
  • Canopy Included: No
  • Cushions Included : Yes
  • Warranty Length: 1 Year
  • Seating Capacity: 1
  • Commercial Warranty: Yes
  • Weight Capacity: 450
  • Chain Material: Steel
  • Removable Cushions: Yes
  • Removable Cushion Cover: Yes
  • Country of Origin: China
  • Cushion Cover Material: Cotton Blend
  • Product Warranty: Yes
  • Cushion Fill Material : Polyester, Cotton
  • Personalization or Monogramming: No
  • Overall Height - Top to Bottom: 78.7
  • Overall Width - Side to Side: 37.8
  • Overall Depth - Front to Back: 37.8
  • Seat Cushion Thickness: 6
  • Product Care: Wipe Clean Only
  • Chain/Rope Length - End to End: 14.6
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.