啦啦啦Smartphone I12 Pro Max

$100.00  - $1,000.00
(Tax included)
Color:  Black
Ships From:  China
Plug standard:  American
Quantity
The current item does not participate in the discount gift campaign. Switch the participating items to check the design.
(This prompt will not be displayed on the client-side)
Shipping
测试2

Description

Brand Name: CARPRIE

Battery Capacity(mAh): smartphone android

Origin: CN(Origin)

Is_Display: Yes

Waterproof / Water-Resistant: No

Walkie Talkie Type: Portable

Maximum Range: >50km

Output Power(w): <0.5w

Certification: None

Model Number: I12 Pro Max Smart Phone

Frequency Range: Smartphone

Dimensions: 6.8 inch Smart Phone

Storage Channel: smart phone Android

Material: Plastic

Feature 1: smartphone android

Feature 2: I12 Pro Max Smart Phone

support 1: dropshipping

Feature 3: Cell Phone Telephone

Feature 4: I12 Pro Max Smart Phone

Feature 5: In Stock



I12 Pro Max Smart Phone Unlocked Android 4+32G RAM 6.8inch Water Drop Screen

Feature:

  • 6.8 inch full screen

  • The 5MP front camera can fuse each of
    your experiences into vivid colors, clarity and dynamic range. Even in the
    darkest light

  • I12 Pro Max has a 13MP supported flash
    and LED flash camera combination.

  • Just point and shoot, I12 Pro Max can
    ensure that your photos stay clear and bright

  • I12 Pro Max also supports facial
    recognition

  • Powerful performance

  • MTK6580 mobile platform uses 7mm
    technology, which is very suitable for young people to play games

  • Android 9.1

  • The new interactive design makes
    operation simple and easy

  • Dual SIM card + TF card

  • Dual card dual standby, no difference
    between main card and auxiliary card

Specification:

  • Model: I12 Pro Max

  • CPU: MTK6580 Deca core (latest 4 cores)

  • SIM / TF: 2 SIM card slots (Nano SIM) +
    1 TF card slot (maximum support for expansion 128GB)

  • Screen: 6.8 inch hd + perforated
    high-definition screen 1440x3040 high-definition resolution

  • Resolution: 1440x3040 HD resolution

  • Camera: front 2MP + rear 5MP

  • Memory: RAM4G + ROM32GB

  • System: Android 9.1 system

  • Battery: Take out the battery, the
    battery capacity is 4800Mah / 4.35V

  • Unique back cover: 3D electroplating
    gradient color nano glass back cover

  • Network: 3G: WCDMA850 / 1900/2100; 4G

  • Vibration: Support

  • Gravity sensor: support

  • Multimedia: MP3 / MP4 / 3GP / FM radio /
    Bluetooth

  • Multi-function: full screen, face
    recognition, screen fingerprint, dual SIM card, Wifi, GPS, gravity sensor,
    alarm,

  • Calendar, calculator, voice recorder,
    video recorder, WAP/MMS/GPR, image viewer, e-book, world clock

  • Language: Multi-language support

Package Included:

  • 1 x smart phone,

  • 1x
    charging cable

  • 1x
    earphone

  • 1x data
    cable

  • 1x
    rubber sleeve

  • 1x
    protective film



Rich text

A sentence or two introducing your brand, what you sell, and what makes your brand compelling to customers.
Buy now
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.