DEEEGE G6 Pro Karaoke Microphone with 20W Bluetooth Speaker & LCD 2

Wireless Mic for Adults & Kids, Compatible with Phones/Tablets
$99.00 $159.00
(Tax included)
Quantity:  1
Quantity
Fast & Free
Guarantee
Warranty
Support
Share the love
Description

✨ DEEEGE G6 Pro 藍牙K歌麥克風

高端質感・專業音效・隨時隨地歡唱

一支真正懂得「唱」的麥克風,不只是娛樂,更是一種生活品味的體現。

DEEEGE G6 Pro,為您帶來專業KTV等級的沉浸式K歌體驗。
融合20W高功率喇叭高清LCD顯示螢幕全功能藍牙連接,不論是家庭聚會、朋友歡唱或外出旅行,隨時隨地,立即開唱!


🌟 為什麼選擇 G6 Pro?

內建20W高品質喇叭|聲音飽滿震撼,無需額外音響設備
高清液晶顯示螢幕|操作更清晰,資訊一目瞭然
專業K歌音效|支援混響、變聲,多種模式切換
精緻金屬質感工藝|高端大氣,送禮自用皆宜
一機多用|藍牙連接手機/平板,完美支援K歌App、YouTube、音樂播放


💎 不只好唱,更要好看

每一處細節,皆精雕細琢
每一道聲音,皆清澈有力
這不僅是麥克風,更是一種對「聲音美學」的極致追求。

🎁 購買優勢

  • 限時優惠:$99(原價$159)

  • 14天退換保障 + 1年原廠保固

  • 美国現貨供應,快速出貨

  • 終身客服支援,使用無憂


📦 適用情境

  • 🎉 家庭K歌 / 派對聚會

  • 🎁 送禮自用兩相宜

  • 🏕️ 露營、戶外活動

deeege-g6-pro-chinese karaoke machinedeeege-g6-pro-chinese karaoke machine 2deeege-g6-pro-chinese karaoke machine 3deeege-g6-pro-chinese karaoke machine 4deeege-g6-pro-chinese karaoke machine 5deeege-g6-pro-chinese karaoke machine 6deeege-g6-pro-chinese karaoke machine 7deeege-g6-pro-chinese karaoke machine 8deeege-g6-pro-chinese karaoke machine 9deeege-g6-pro-chinese karaoke machine 10deeege-g6-pro-chinese karaoke machine 11

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.