Gaming Gaming Headset Bluetooth Headset Cat Ear Noise Cancellation High Sound Quality Cute

$23.20
$29.00
-20%
Color:  Pink
Quantity
people are viewing this right now

Description

Product Description:

  • Hign-concerned Chemical:  None
  • Material:  Plastic
  • Category:  Earphones & Headphones
  • Active Noise-Cancellation:  No
  • Volume Control:  Yes
  • Control Button:  No
  • Vocalism Principle:  Dynamic
  • Wireless Type:  bluetooth
  • Communication:  WireLess
  • Style:  Headphone
  • Certification:  CE,FCC
  • Origin:  Mainland China

• RGB Cat Ear Design :The headset features a unique RGB cat ear design that adds a touch of fun and personality to your gaming experience.

• Wireless 5.0 Compatibility :With Wireless 5.0 compatibility, you can easily connect the headset to your device without any wires or cables.

• Volume Control and Control Button :The headset comes with a volume control and control button, allowing you to easily adjust the volume and control your music or calls.

• Dynamic Vocalism Principle :The headset uses a dynamic vocalism principle, ensuring clear and crisp sound quality for an immersive gaming experience.

Specifications:

1.Model number: B90

2.Drive diameter: 40mm

3.Chipset: ATS3015

4.Compatible version: BT5.0

5.Supported protocols: AVRCP1.4, A2DP1.2, HFP1.6, HSP1.2

6.Audio decoding: WMA, APE, FLAC, AAC, M4A, WAV, AIF, AIFC

7.Bluetooth-compatible distance: 10m

8.Frequency: 2.402GHz-2.480GHz

9.Microphone Sensitivity::-42±3DB

10.Sensitivity: 94±3DB

11.Impedance: 32 ohms

12.Frequency response range: 20-15KHZ

13.Battery capacity: 800mA

14.Playing time: 15-22 hours

15.Charging time: about 3 hours

B90 Bluetooth-compatible headphone

Bluetooth-Compatible 5.0, Colorful RGB Light

Product Features

Bluetooth-Compatible 5.0, Wide Compatible, RGB Cat Ear

HD Mic, 22hrs Playtime, Foldable Design

Bluetooth-compatible 5.0 Connection

Compatible with devices without delay

Joy with the Vivid Colorful LED Lights

7 kinds of colorful led lights change automatically

HD Microphone
Noice Reduction

Windproof noise reduction design, provide high-resolution call experience

HiFi Surround Sound

Lossless HIFl sound quality, creating a pleasant listening experience.

Adjustable Head Beam
Long Time Wearing

Ergonomic design with adjusted frame and over-ear soft earmuffs for long time wearing

Multi-function Button Control

Foldable Design

The head beam can be retracted and folded, which is convenient for storage

Product Feature:

1. Using RGB Cute Cat Ear�� With a pink outlook and the cute cat ears, this headset forms your gaming set-up to a new level of kawaii, automatically to attract everyone's attention.

2.【Bluetooth-compatible 5.0 without Delay】Fast and stable connections to your Bluetooth-compatible devices and low latency during audio/video streaming.

3. LED RGB Effects & Widely Use Various breathing lights designed on the earcups to highlight the game experience. widely compatible with PC/MAC/ PS4/ PS5/Laptop via USB connection.

4. Positioning your enemies does matter in playing games, ONIKUMA headsets offer you incredible surround sound to help you win your game.

5. Making your head and ears comfortable after hours of game playing.

6.【Resize and Foldable Design】The headset can be resized to fit your head. Can be folded for easy travel.

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.