Open-Ear Headphones with Stable Comfort & Hi-Res Sound Pure Bass Boost Bluetooth 5.3 Earbuds OWS Wireless Headphones for Sports

$16.38
Color:  White
Quantity
people are viewing this right now

Description

Product Description:

  • Hign-concerned Chemical:  None
  • Material:  Plastic
  • Battery Capacity[mAh]:  450
  • Battery life up to[hours]:  35
  • Voice assistant built-in:  YES
  • Maximum wireless range[m]:  10m-20m
  • NFC Technology:  No
  • Sound Isolating:  No
  • Category:  Earphones & Headphones
  • Earcups Type:  Open-back
  • Max Output:  56
  • Number Of Drivers:  2
  • Charging Method:  Charging case
  • Headphone Pads Material:  other
  • Magnet Type:  Neodymium
  • Driver Diameter:  14.2
  • Total Harmonic Distortion:  4
  • Impedance Range:  up to 32 Ω
  • Bluetooth Version:  5.3
  • Package List:  User Manual,Charging case,Charging Cable
  • Features:  waterproof,With microphone,Amazon Alexa Support,Apple Siri Support,Playback Control,Google Assistant Support
  • Codecs:  AAC,sbc
  • With Microphone:  Yes
  • Is wireless:  Yes
  • Support APP:  No
  • Support Memory Card:  No
  • Waterproof:  Yes
  • Resistance:  32
  • Frequency Response Range:  20 - 20000
  • Sensitivity:  94
  • Plug Type:  Line Type
  • Function:  for Video Game,Common Headphone,For Mobile Phone,HiFi Headphone,Sport,For Outdoor,For Office,For Sleep,For Study
  • Active Noise-Cancellation:  No
  • Volume Control:  Yes
  • Control Button:  Yes
  • Vocalism Principle:  Dynamic
  • Wireless Type:  bluetooth
  • Connectors:  Type c
  • Communication:  WireLess
  • Style:  Ear Hook
  • Certification:  CE,FCC

Open-Ear Headphones with Stable Comfort & Hi-Res Sound Pure Bass Boost Bluetooth 5.3 Earbuds OWS Wireless Headphones for Sports

Type: Bluetooth Earphones, Wireless Headphones, Waterproof Headphones

Feature

[Stable and Comfortable Open-Ear Design: ]

Our Arikasen open-ear headphones offer a secure and comfortable fit, ensuring that you can wear them for extended periods with ease. Additionally, the open-ear design promotes hygiene, and it allows you to stay aware of your environment, enhancing safety during use.

[High-Resolution Audio with AAC and Bluetooth 5.3:]

Immerse yourself in an unparalleled audio experience with our Arikasen Bluetooth headphones. They provide exceptional hi-res sound quality, enhanced by AAC encoding, and boast the latest Bluetooth 5.3 technology to ensure a seamless and high-quality wireless connection.

[Powerful Sound with Enhanced Bass and Noise canceling:]

Enjoy a rich and powerful audio experience, thanks to the 14.2mm large dynamic driver and advanced low-frequency enhancement technology. Additionally, our open-fit headsets feature dual-microphone noise reduction, ensuring that your calls are crystal clear, even in noisy environments.

[Extended Battery Life and Low-Latency Gaming:]

Our Arikasen headphones offer an impressive total battery life of 35 hours, ensuring that you can enjoy your music and calls without frequent recharging. Moreover, they feature a low 60ms latency gaming mode, providing a competitive edge for gamers. On a single charge, you can enjoy up to 6-8 hours of playback.

[IPX5 Waterproof: ] Not for Swimming or Showering

Designed to withstand various conditions, our headphones come with an IPX5 waterproof rating, making them perfect for active use.

[Environmental Noise Cancellation&Crystal-Clear Calls]

Arikasen wireless headphones feature a 14.2 mm diameter speaker for clear calls and 4 microphones to provide up to 3 times clearer calls than other true wireless earbuds, reproducing your music vividly.

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.