3-in-1 USB C Wireless iWatch Charger for Apple Watch,with 30W Power Adapter for 14/13/12/X/iwatch 7/6/5/4/3/2 White
3-in-1 USB C Wireless iWatch Charger for Apple Watch,with 30W Power Adapter for 14/13/12/X/iwatch 7/6/5/4/3/2 White
3-in-1 USB C Wireless iWatch Charger for Apple Watch,with 30W Power Adapter for 14/13/12/X/iwatch 7/6/5/4/3/2 White
3-in-1 USB C Wireless iWatch Charger for Apple Watch,with 30W Power Adapter for 14/13/12/X/iwatch 7/6/5/4/3/2 White
3-in-1 USB C Wireless iWatch Charger for Apple Watch,with 30W Power Adapter for 14/13/12/X/iwatch 7/6/5/4/3/2 White

3-in-1 USB C Wireless iWatch Charger for Apple Watch,with 30W Power Adapter for 14/13/12/X/iwatch 7/6/5/4/3/2 White

$23.99
$0.00
-$-23.99
Quantity
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Vendor by: Medgthi
SKU: IVYY/ZJ/230216/SSC-00081BK

30W USB-C PD  Fast Charging, Provides Full Charge for Your Watch Series About 3.5 Hours & Phone 2.5 Hours.

 

Cable Length: 1.5M/5Ft

 

weights: 130g/0.286lb.

 

Input Voltage: 100-240V ~ 50-60Hz, 0.5A

 

Output Power: 5V/3A, 9V/2.2A

 

Intelligent Chip Inside: Multi-Charging Protection Keeps Your Device Safe From Over-Current, Over-Voltage, Over-Heating & Short-Circuiting.

 

Package Included: 1x 30W USB-C PD Wall Fast Charger & 1x 5FT 3 in 1 Cable for Apple Watch and for iPhone.

 

Compact and Portable 3 in 1 USB C charger for Apple Watch.

 

Light weight and easy to organize, can fit into your pocket or bag, convenient for travel/home/car/office, dual charging mode meets your daily needs ,making your life easier.

 

Before use 3 in 1 iWatch Charger and iPhone Charger, please ensure that the voltage stable.

  • 【30W Apple Watch Fast Charger】 Update Version 3 in 1 charger for Apple iWatch & iPhone Charger , include 30W PD USB C fast wall charger, up to 5X faster than the original charger 5W speed. To get better experience, please use the USB C charger we provide to charging your Apple devices.
  • 【3 in 1 iWatch & iPhone Charger】 For Apple iwatch magnetic charging cable can charge for and iwatch ,iphone ,iPad or Airpods simultaneously. The fast smart watch charger avoid the trouble of carrying multiple charging cables when travel, improve your work efficiency, make your life convenience.
  • 【Magnetic Charger for Apple Devices】The watch charging dock is designed to ensure perfect suitable for all Series Watch 8/SE/7/6/5/4/3/2, including the 38 mm 40 mm 41 mm 42 mm 44 mm 45 mm Version.Simply hold the watch charger near the back of the your watch, where magnets cause it to snap into place automatically.And also have phone charging cable for Apple iPhone14/13/12/11/Pro/Max/XR/XS/XS Max/X/iPad/iPad Pro.
  • 【Safe and Reliable USB C Watch Charger】 This iWatch charger cable is made of high quality ABS+PC and pure copper wire, the charging cable has been tested for 10000+ times of bending to avoid shortened lifespan due to aging and usage. Built-in safety functions such as over-current, over-voltage, short circuit, and over-temperature protection to provide you with a safe charging environment and a good charging experience.
  • 【Portable and Convenient 】This 5ft/ 1.5m charger cable for Apple watch kit features a lightweight and portable design, easy to take in your bag or put in your pocket when you go on a business trip or home/office use. This charging station for Apple products package includes 1X for iWatch Charging Cable 5ft/ 1.5m, 1 X 30W PD fast adapter.
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.