Suitable for iPhone series electroplating bracket magnetic space shell all-inclusive mobile phone case protective cover

people are viewing this right now
$19.99
$39.99
8566 sold
Color : Purple
Style : For iPhone 15
Quantity
Free shipping on orders over $50
Free returns within fourteen days
Contact us: service@cantuv.com
Secure payments
Description

🔥The price is limited ! 🔥 Grab yours as the limited promotion available!

  • TIPS: All goods are authentic, with genuine patents, counterfeit must be investigated! Customers, please identify our products!!!
  • 😊If you are not satisfied with the goods you received, please contact us within 15 days after receiving, we will give you the best help!
  • 🚢 Shipping>>Worldwide express shipping available.
  • 🔥98.9% of customers buy 2 or more

MAIN FEATURES


  • [Invisible Stand Magnetic Case]

    This is a new range that offers magnetic ring and kickstand functionality for the iPhone. When it's open, the built-in aluminum magnetic ring stands stable in portrait or landscape mode, and when it's folded, the back is completely invisible (not preventing the use of Magnetic Charging). It's great to use on your desk or anywhere when you're working or consuming media!You'll free your hands and unlock every happy moment from the perfect hands-free viewing angle,such as FaceTime calls, video meetings, YouTube browsing,and etc.

    [Specially Designed]

    This case is specially designed for iPhone, the only case that will always look as clean as a new phone. It is not a metal phone case. This case is made with a soft bumper and a matte clear back (showing your naked iPhone's panel color for a truly timeless finish.) 

    [Built-in Magnetic Power]

    The built-in magnets can the magnetic connection and ensure auto-alignment to make wireless charging faster and safer than before. It’s compatible with all Qi-certified chargers, wireless chargers, and car mounts. 

    [Comfortable Grip]

    This iPhone case features an ergonomic design. The machined frame provides a uniquely smooth grip designed for texting, playing games and taking selfies, bringing you a comfortable experience.

    [Rugged Military Grade Shockproof]

    Tested to withstand drops exceeding MIL-Grade PRO standards, this slim case features a bumper with 4-layer cushion construction, 360° impact absorbing airbags at all 4 corners, cleverly reinforced 1.5 mm screen edge, 2.5 mm camera bezel, and upgraded 360° lens airbag to protect your camera and screen from everyday wear and tear.

    SPECIFICATIONS

    Material: acrylic

    Color: Purple,Black,Silver,Blue

    Product size: For iPhone

    Product weight: 100g

    🎁Package Includes

    • 1 x Electroplating four-corner anti-drop airbag bracket mobile phone case

    FEATURES

    • High-definition glass lens film all-inclusive protection
    • Four-corner airbag edging drop-proof
    • Bottom high-density dust-proof net

    OUR GUARANTEE:

    • We believe we have some of the most innovative products in the world, and we want to make sure we back that up with a risk-free 30-day guarantee.
    • If for any reason you do not have a positive experience, we will make every effort to ensure that you are satisfied with your purchase.
    • We want you to rest assured that there is absolutely zero risk in buying and trying out products. If you don't like it and don't feel bad, we'll do it right.
    • We email support. If you need help, please contact us.
    🌎 Worldwide Shipping ✈  
    You may receive your items earlier. Tracking Numbers will ALWAYS be sent so you can track it every step of the way! Cool things are worth waiting for! 😉

SPECIFICATIONS

  • Material: AcrylicC

  • Weight: 60g

Shipping:

  • Free Shipping Over $50.

  • Orders will be processed within 7 business days of ordering and shipped out the next day after the processing day. Orders will generally be delivered within 7 to 14 working days.

Returns:Fast refund for any dissatisfaction within 15 days, 100% money-back guarantee.


Note:

  • Due to manual measurements, please allow slight measurement deviations.

  • Due to the different display and lighting effects, the actual color of the item may be slightly different from the color displayed on the picture.

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.