Free shipping

EFAITHFIX 3-in-1 Wireless Charger, 15W Magnetic Wireless Charging, Foldable Fast Wireless Charging Pad for iPhone, Compatible with QI Phones, Airpods 3/2/Pro, iWatch, White

$25.99
$28.99
Save $3.00
Quantity
SKU: Wireless Charger 3 in1 White
Description
Why choose 3-in-1 foldable wireless charger?
EFAITHFIX's magnetic folding charger is worth taking home. It is ideal size, compact and lightweight, widely applicable, efficient and convenient, and safe and protected. Use it to charge your phone, AirPods, and Apple Watch, and wireless charging is compatible with phones that support the Qi standard. It will be the best choice for daily use and travel.

?15W Fast Charging Pad?Wireless magnetic fast charger can quickly charge your phone, and the 3-in-1 design can charge your iPhone, Samsung, iWatch and AirPods at the same time. Mobile phone output: 5W/7.5W/10W/15W, headphone output: 3W for charging Airpods 3/2/Pro, watch output: 2.5W for iWatch 8/7/6/SE/5/4/3/2.
?Folding Design & Strong Magnetic Suction? The wireless charger can be folded 180� for storage, and can also be quickly turned into a mobile phone holder. The charging plate is covered with a magnetic device, which can firmly absorb iPhone 12/13/14/15 mobile phones and will not slip off even if it shakes. Wirelessly charge the phone horizontally to watch movies and chat vertically. It can be used in the office, at home, on the dining table, or in the bedroom when folded, making charging no longer boring. (30 degree folding charging is not recommended)
?Easy to carry, multi-charge in one line? The wireless charging base is slim, compact in size (9.4*2.4*0.3 inches) and takes up less space after folding, and can easily slide into your business bag or travel case, perfect for vacation and business travel. Lightweight and compact design, easy to carry, it is a good companion for home, office and travel charging.
?Safe and Reliable?Built-in Type-C charging cable, no need to install multiple charging cables. Approved by Qi.CE, FCC. Double security ensures all your devices are fully protected
Product packaging: 1 x 3-in-1 wireless charger, 1 x Type-C charging cable, 1 x user manual, 1 x packaging box.
Product color: white
  • Three-in-one folding magnetic charging station: The wireless charging pad contains magnetic attraction and can charge Apple 12 and above series automatically and accurately. Magnetic suction is suitable for iPhone 14/14 Pro/14 Plus/14 Pro max/13/13 Pro/13 Pro Max/12/12 Pro/12 Pro Max, etc. It is also compatible with Samsung series mobile phones with wireless charging function, Apple Watch 8 7 6 5 4 3 2 and AirPods (wireless charging does not support other brands of watch )
  • Travel Wireless Charging Stand: Portable foldable 3-in-1 wireless charger that can charge your iWatch, phone and AirPods at the same time. Lightweight and compact design, easy to carry, it is a good companion for home, office and travel charging.
  • Compact and easy to use: Charge three Apple products simultaneously with just one power cord. The 180� foldable charging pad turns into a mobile phone holder in seconds and can be placed horizontally for watching videos, chatting, entertaining, and working.
  • Safe and fast charging: Our wireless chargers are certified and equipped with Type-C cables. The products use intelligent protection technology to provide temperature control, overvoltage protection, short circuit protection, and overcurrent protection to ensure safe and fast charging of your products.
Kind tips:
  • 1. Please make sure your device supports wireless charging before use.
  • 2. Please avoid the charging box being thicker than 5MM, which will cause wireless charging to fail.
  • 3. When the operating temperature exceeds 122�F, charging will be interrupted to avoid damaging the device.
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.