YONZEE Tesla Mattress Camping Rear Trunk Mat For Tesla Model 3/Y
YONZEE Tesla Mattress Camping Rear Trunk Mat For Tesla Model 3/Y
YONZEE Tesla Mattress Camping Rear Trunk Mat For Tesla Model 3/Y
YONZEE Tesla Mattress Camping Rear Trunk Mat For Tesla Model 3/Y
YONZEE Tesla Mattress Camping Rear Trunk Mat For Tesla Model 3/Y
YONZEE Tesla Mattress Camping Rear Trunk Mat For Tesla Model 3/Y
YONZEE Tesla Mattress Camping Rear Trunk Mat For Tesla Model 3/Y
YONZEE Tesla Mattress Camping Rear Trunk Mat For Tesla Model 3/Y
8/8
YONZEE Tesla Mattress Camping Rear Trunk Mat For Tesla Model 3/Y
YONZEE Tesla Mattress Camping Rear Trunk Mat For Tesla Model 3/Y
YONZEE Tesla Mattress Camping Rear Trunk Mat For Tesla Model 3/Y
YONZEE Tesla Mattress Camping Rear Trunk Mat For Tesla Model 3/Y
YONZEE Tesla Mattress Camping Rear Trunk Mat For Tesla Model 3/Y
YONZEE Tesla Mattress Camping Rear Trunk Mat For Tesla Model 3/Y
YONZEE Tesla Mattress Camping Rear Trunk Mat For Tesla Model 3/Y
YONZEE Tesla Mattress Camping Rear Trunk Mat For Tesla Model 3/Y
8/8

YONZEE Tesla Mattress Camping Rear Trunk Mat For Tesla Model 3/Y

$279.99
$299.99
147 sold
ColorCar air mattress
Please select a color
Quantity
Weight: 3650g

Installation instructional

Brand: YZ
Place of origin: China
Model number: MODELY Car Air mattress
Color classification: light grey
Material: PVC+ Corduroy +420D
Type of air pump: Cigarette lighter air pump

About this item

  • Love car into a big bed room, anytime and anywhere to provide a comfortable rest space for the family, enjoy different travel fun
  • Travel rest more convenient and comfortable No need for hotels, homestays, tents, one car, two people, three meals, four seasons, start collecting the world
  • Sleeping space with zero pressure, sleep peacefully lying on the soft mattress, and even forget that the surrounding environment is as comfortable as home after falling asleep
  • Environmentally friendly mother and baby material, soft and comfortable, will not hurt the car. The front corduroy is skin-friendly and healthy. The bed adopts a balanced design of multiple three-dimensional columns.
  • Tightly fit the body without loosening and noise-free Made according to the structural size of the car, highly fit your car without loosening and noise-free
  • 3D column balance design, all-round high elastic support, uneven and plump, evenly stressed and not collapsed, fits the curve of the human body to better disperse pressure
  • The one-piece support headrest fits the spine and does not collapse under force, allowing you to start a comfortable journey and fall asleep soundly in the car
  • Cigarette lighter type air pump is convenient, simple and quick to inflate
  • The free storage bag does not take up space and is convenient for travel. Folds into storage box, puts in front trunk or trunk
  • Double-layer air valve anti-leakage design The first layer of inflation port: one-way inflation system to prevent air leakage The second layer of air release port: open and quickly deflate
Product Name: Model Y Auto Aspirate · Custom Mattress
Product specifications: Air cushion bed *1+ Air pump *1
Product material: PVC+ Corduroy +420D
Applicable model: Suitable for Tesla Model Y
Product size: 210x141cm

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.