360 Swivel Rocker Chair for Adults, Glider Rocker Recliners

45 sold
$49.96
$165.95
-70%
Size:  Beige-l
Color:  35.44"D x 28"W x 40.16"H
Quantity

Description


About this item

  • 360° Swivel & Multi-Angle Recline:This nursery rocking chair offers 360° swivel, a backrest tilt from 95° to 160°, and a footrest adjustable from 0° to 90°, perfect for various relaxation needs.
  • Breathable & Durable Upholstery :Made with skin-friendly, breathable linen fabric, the chair's backrest and seat are highly resilient, maintaining shape even after prolonged use.
  • Sturdy Metal Frame:Built with a robust metal frame and base, the chair ensures smooth swivel and stability, supporting up to 250 lbs.
  • Versatile Use: Ideal for the living room, nursery, bedroom, or study, this recliner blends seamlessly into any space, offering comfort for you, your family, and friends.
  • Easy Assembly:Measuring 29.1”D x 30.3”W x 40.2”H, the chair ships in one box and can be assembled in just 8-15 minutes using the included instructions.

Brand Sweetcrispy
Color Ash Grey
Product Dimensions 35.44"D x 28"W x 40.16"H
Size 35.44"D x 28"W x 40.16"H
Back Style High Back
Special Feature Reclining
Product Care Instructions Spot Clean, Vacuum Regularly
Recommended Uses For Product Relaxing
Maximum Weight Recommendation 2.5E+2 Pounds
Style Modern
Pattern Solid
Finish Type Painted
Age Range (Description) Adult
Included Components Arm Pad
Theme Modern
Shape Rectangular
Model Name Recliner Chair
Arm Style Armless
Surface Recommendation Hard Floor
Furniture base movement Swivel
Indoor/Outdoor Usage Indoor
Furniture Finish Dark Grey
Fill Material Foam
Leg Style Straight Leg
Reclining Position Count 3
Is Customizable No
Is Foldable No
UPC 717242941267
Form Factor Recliner
Manufacturer Sweetcrispy
Item Weight 77.7 pounds
ASIN B0DXPY7WCB
Country of Origin China
Item model number GY6084
Customer Reviews

4.0 out of 5 stars
Best Sellers Rank #22,577 in Home & Kitchen ()
#8 in
Refill Foam
Finish types Painted
Assembly required Yes
Batteries required No

Soft Backrest

While ensuring soft comfort, our backrests are also ergonomic in mind. The slightly raised arc conforms to the curves of the human body.

Rounded Armrests

The armrests are wrapped in fabric and rounded in shape. Conforms to the characteristics of the human hand for a more comfortable experience.

Breathable Seat Cushion

The seat cushion is soft, but at the same time breathable. With a special fabric, it won't make your buttocks feel stuffy even on a hot summer day.

Adjustable Footrest

When you're tired after a long day, our chairs are designed to relax. The adjustment range of 0-90° brings you the most comfortable experience.

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.