Backpack Tanning Chair

15 sold
$18.95
$42.00
-55%
Color:  Black
Quantity

Description

Description

A cool update on the foldable sun lounger from Outsunny. Features a padded head hole at the front to allows you to rest your face in comfortably, which is perfect for relaxing or even reading a book! The powder coated steel frame is strong and solid to support up to 120 kg. The reclining backrest is five positions adjustable, easy to set and lock to a position you like best. Complete with a handy side pocket.

Features:

Adjustable backrest can be locked to five different positions
Sun lounger is easy to store and transport with folding design
With padded face hole and arm slots, relax whilst on your front and reading a book
Smooth, breathable Oxford fabric seat makes you comfortable
Powder coated steel frame is strong and tough
Side pocket allows storing magazines, books, phones and more
Maximum load 120kg, no assembly required


Specification:

Colour: Beige
Material: Oxford Fabric, Steel, Sponge
Upright Dimension: 183L x 55W x 81H cm
Fully Reclined Dimension: 185L x 55W x 29H cm
Folded Dimension: 72L x 55W x 10H cm
Back Size: 56L x 55W cm
Pillow Size: 30L x 29W cm
Reading Hole Size: 13L x 13W cm
Side Pocket Size: 25L x 25W cm
Weight Capacity: 120 kg
Item Label: 84B-867V70BG
1 x Lounger
1 x Manual

Do you wish you could bring the comfort of the resort on the road with you? You're a step closer. Outsunny has a folding chaise lounge so you can relax in the sun at the beach. Enjoy the outdoors; it features a 5-position reclining backrest, a reading hole for your head and arms, and a pillow. Place items in the pocket to keep them nearby. Made with tough Oxford fabric and water-safe powder-coated steel, it will follow you wherever the wilderness takes you. Get out, get comfy, get Outsunny.

Highlights

  • Reclining & Face Hole: The adjustable backrest of our patio lounge chair allows you to choose from 5 reclining angles with a pillow for padding and holes for your head and arms to let you read as you lie face down
  • Outdoor Tanning Chair with Storage: Feel free to relax fully, knowing everything is in its proper place. Our outdoor foldable tanning chair has a pocket to keep your phone, book, or other items safe and organized
  • Foldable Design: With the tri-fold design, this patio lounger is space-saving for storage in the garage and easy to travel with, fitting in the trunk of your car
  • Outdoor Lounge Chair: The outdoor-ready combination of powder-coated steel and tough Oxford fabric allows our beach lounge to endure water while still maintaining a 264 lbs. weight capacity
  • Outdoor Chaise Lounge Chair Info: Overall Dimensions: 72.8" W x 21.7" D x 11.4" H (Fully Reclined); Folded Dimension: 28.3" L x 21.7" W x 3.9" H. Weight Capacity: 264 lbs.
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.