Headphones Kids Wireless Bluetooth Earphones Stereo Foldable Helmets Gaming Headsets Over-ear Headphones for Android ios

$8.50
Color:  black
Quantity
people are viewing this right now

Description

Product Description:

  • Hign-concerned Chemical:  None
  • Material:  Plastic
  • Category:  Earphones & Headphones
  • Earcups Type:  Sealed
  • Number Of Drivers:  2
  • Total Harmonic Distortion:  1%
  • Impedance Range:  up to 32 Ω
  • Bluetooth Version:  5.0
  • With Microphone:  No
  • Is wireless:  Yes
  • Support Memory Card:  Yes
  • Waterproof:  No
  • Resistance:  32Ω
  • Frequency Response Range:  20 - 20000Hz
  • Sensitivity:  85dB
  • Plug Type:  None
  • Function:  For Internet Bar,Monitor Headphone,for Video Game,Common Headphone,For Mobile Phone,HiFi Headphone,Sport
  • Active Noise-Cancellation:  Yes
  • Volume Control:  Yes
  • Control Button:  Yes
  • Vocalism Principle:  Balanced Armature
  • Wireless Type:  bluetooth
  • Communication:  WireLess
  • Style:  Headphone
  • Certification:  CE
  • Model:  Y08
  • Type 1:  bluetooth earphones
  • Type 2:  auriculares bluetooth
  • Type 3:  for airpods pro
  • Type 4:  headset
  • Type 5:  headphones bluetooth
  • Type 6:  bluetooth headphones
  • Type 7:  wireless headphones
  • Type 8:  tws


Macaron Girls Wireless Headphones Bluetooth Earphones With Microphone Stereo HiFi Music Headset Over-ear Headphones For ipad iphone android

Description:
Using advanced Bluetooth-compatible 5.0 chip, it supports multiple protocols, stable transmission, hands-free calls and super compatibility.
Featured with adjustable headband and folding design, the headphone is comfortable to wear and convenient to carry on vacation or business trip.
It is made of high-quality ABS material, which is lightweight and comfortable.
The length of the product is 16cm, the width is 8cm and the height is 4cm.
It has wide compatibility, and is compatible with all Bluetooth-compatible devices. You can freely control the switch between the previous song and the next song, pause the music, answer the call, end the call, reject the call, increase and decrease the volume.


Item Name: Bluetooth Headphones
Material: ABS
Model: Y08
Audio Input: 3.5mm Jack Type
Speaker Sensitivity: 105±3dB
Speaker Power: 25mW
Speaker Frequency Range: 20Hz-20KHz
Impedance: 24Ω
Microphone: Support
Microphone Frequency Range: 30Hz-16KHz
Microphone Sensitivity: -58±3dB
Bluetooth-compatible Version: V5.0
Transmission Protocol: EDR+A2DP
Transmission Coding: SBC
Noise Reduction Technology: DSP+AEC
Frequency Range: 2.402-2.480GHz
Effective Transmission Distance: 10 Meters
Transmit Power: 5dBm
Battery Capacity: 150mAh (Included)
Charging Current: 5V500mA
Charging Time: <1 Hour
Use Time: ≥5 Hours
Standby Time: ≥100 Hours
Micro-SD/TF Card: Support Up to 32G, Support Play/Pause/Previous/Next
FM Listening: Support FM Full Frequency Search and Save Frequency
Features: Foldable, Hands-free Calling, Adjustable Headband
Size Details:
16cm x 8cm x 4cm/6.3" x 3.15" x 1.57" (Approx.)


Notes:
Due to the light and screen setting difference, the item's color may be slightly different from the pictures.
Please allow slight dimension difference due to different manual measurement.

Package Includes:
1 x Bluetooth Headphones
1 x USB Cable


                             

 
 
 
 
 
 


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.