✈️ Free shipping for orders over $45 📦
4-in-1 [60W Fast Charging & Data Sync] Flat Braided Anti-Tangle Charger Cord with Velcro
4-in-1 [60W Fast Charging & Data Sync] Flat Braided Anti-Tangle Charger Cord with Velcro
4-in-1 [60W Fast Charging & Data Sync] Flat Braided Anti-Tangle Charger Cord with Velcro
4-in-1 [60W Fast Charging & Data Sync] Flat Braided Anti-Tangle Charger Cord with Velcro
4-in-1 [60W Fast Charging & Data Sync] Flat Braided Anti-Tangle Charger Cord with Velcro
4-in-1 [60W Fast Charging & Data Sync] Flat Braided Anti-Tangle Charger Cord with Velcro
1 / 6
4-in-1 [60W Fast Charging & Data Sync] Flat Braided Anti-Tangle Charger Cord with Velcro
4-in-1 [60W Fast Charging & Data Sync] Flat Braided Anti-Tangle Charger Cord with Velcro
4-in-1 [60W Fast Charging & Data Sync] Flat Braided Anti-Tangle Charger Cord with Velcro
4-in-1 [60W Fast Charging & Data Sync] Flat Braided Anti-Tangle Charger Cord with Velcro
4-in-1 [60W Fast Charging & Data Sync] Flat Braided Anti-Tangle Charger Cord with Velcro
4-in-1 [60W Fast Charging & Data Sync] Flat Braided Anti-Tangle Charger Cord with Velcro
50% OFF
Save $14.87
elfangy.cc

4-in-1 [60W Fast Charging & Data Sync] Flat Braided Anti-Tangle Charger Cord with Velcro

$14.99 $29.86
6 sold
Color
Length
Qty

NOTE:

We have finished upgrading the cable to extend the Lightning port by 0.2mm, which allows perfect charging even with a thick phone case. What customers care, is the direction of our improvement.

[4-in-1] The Ever-Cable was designed with the idea of simplifying your life. It combines four ports - USB A to C, USB A to Lightning, USB C to Lightning, and USB C to USB C - in one cable. No need to carry multiple cables for different devices.

[60W Fast Charging & Data Transfer] This charger cord provides up to 60W Output. The phone can be charged up to 60% in 30 minutes. In addition, The charging cable also supports data transfer, 1G file transfer takes only 20 seconds. Save two hours of charging time per day.

[CarPlay & Android Auto Support] This multi charging cable supports CarPlay & Android Auto, charging and navigating at the same time. No matter what devices your family and friends in the car are using, Ever-cable charging all. Make life more convenient.

usb c to usb c cable

[High Quality] Ever-cable is made of zinc alloy, which increases the strength by 700% and the life span by 10 years. And it uses the same material of nylon woven material of parachute. Excellent quality is the source of our confidence that we dare to have a lifetime warranty.

[Anti-Tangle & Easy to Store] The flat design of the cable prevents tangles and knots. In addition, the cable comes with Velcro, which keeps everything well organized when not in use.

USB c to lightning cable

60W Fast Charging

iphone charging cable

Macbook

charging cords for apple products

iPad

1

Android

1

Date Transfer

charging cords for apple

Special Feature  
 
60W Super Fast Charging, Anti-Tangle (Flat cable), 480 Mbps Data Transfer, Zinc Alloy Material, Port Snap Design (Never Fall Off)60W Super Fast Charging, Anti-Tangle (Flat cable), 480 Mbps Data Transfer, Zinc Alloy Material, Port Snap Design (Never Fall Off)
usb c to usb c cable
usbc to lightning cable
1
1
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.