Breezome Desk Fans for Home,90°Oscillating Air Circulator,4Speeds,50ft Powerful Airflow,Oil Diffuser,Portable Fan for Bedroom, Office, Camping with 4000mAh Rechargeable Battery

Breezome Desk Fans for Home,90°Oscillating Air Circulator,4Speeds,50ft Powerful Airflow,Oil Diffuser,Portable Fan for Bedroom, Office, Camping with 4000mAh Rechargeable Battery

Price
$199.99
$158.99
Save $41.00
Quantity
SKU:
The Breezome 3-in-1 Air Circulator Fan combines powerful cooling, whole-room air circulation, and soothing aromatherapy in one compact device. Perfect for bedrooms, offices, kitchens, and camping trips, this versatile fan features 180°Vertical Manual and 90° Auto Oscillation to distribute air evenly throughout your space.With 50ft powerful airflow and 4 customizable speed settings (including a gentle Natural Wind mode), you'll stay comfortable all day and night. The built-in essential oil diffuser lets you enjoy refreshing scents while you feel cool/warm.its space-saving foldable design and 4000mAh rechargeable battery make it ideal for on-the-go use anywhere!
  • 🌪️ Powerful Performance
  • 50ft powerful airflow circulates air better than standard fans
  • 4-speed settings: Breeze Wind/Soft Wind/Strong Wind/Natural Wind
  • 180°Vertical Manual & 90° Auto Oscillation for full-room coverage
  • 💨 3-in-1 Multifunctional Design
  • Air circulator cool down with the AC in summer or provide uniform warmth alongside a heater. Pair it with other home appliances to boost efficiency and reduce energy bills.
  • Essential oil diffuser lets you enjoy refreshing scents while you feel cool/warm.(oil box included)
  • High-performance fan propelling strong airflow up to 50 ft, allowing your cooling fan to rapidly circulate air across your entire room.
  • ⚡ Ultimate Convenience
  • Foldable design collapses to portable size for travel
  • 4000mAh battery with USB-C charging (8-12hrs runtime)
  • Wall-mountable (bracket included) for kitchens/bathrooms
  • Easy to Clean removable washable grille
  • Key Features
  • Model Number:XH04
  • Color: White
  • Dimensions: 7.22×7.22×9.00 in
  • Weight: 2.71 lbs
  • 50ft Strong Airflow
  • Oil diffuser
  • 4 Speeds
  • 45dB low noise
  • 180°adjustable tilt
  • Desk fan for office
  • Hang on the wall
  • Easily removed and cleaning
  • What's in the Box
  • User Manual x 1
  • Wall sticker x 1
  • USB cable x 1
  • Air Circulator Fan XH04 x 1
Get Extended 12-Month warranty coverage when you register your Breezome Products. Register to Get Total 24-Month Warranty Now.

Dimensions(HxWxD) 11x11x11 in
Product Weight 15Ibs
Energy Consumption 7-42Watts
Sound Level Specification
Air Outlet Side
Recommended Filter Change Every6-12 Months Depending On Your Environment
Recommended Room Size 356 ft2
Air Changes Per Hour (ACH) 4.8
Clean Air Delivery Rate (CADR) 255Cfm
Number Of Filters 3
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.