Paris Rhône Tower Fan 005,42”or 36” Height Adjustable 90° Oscillating with 5 Fan Speeds
Paris Rhône Tower Fan 005,42”or 36” Height Adjustable 90° Oscillating with 5 Fan Speeds
Paris Rhône Tower Fan 005,42”or 36” Height Adjustable 90° Oscillating with 5 Fan Speeds
Paris Rhône Tower Fan 005,42”or 36” Height Adjustable 90° Oscillating with 5 Fan Speeds
Paris Rhône Tower Fan 005,42”or 36” Height Adjustable 90° Oscillating with 5 Fan Speeds
Paris Rhône Tower Fan 005,42”or 36” Height Adjustable 90° Oscillating with 5 Fan Speeds
Paris Rhône Tower Fan 005,42”or 36” Height Adjustable 90° Oscillating with 5 Fan Speeds
Paris Rhône Tower Fan 005,42”or 36” Height Adjustable 90° Oscillating with 5 Fan Speeds

Paris Rhône Tower Fan 005,42”or 36” Height Adjustable 90° Oscillating with 5 Fan Speeds

$79.99
$95.99
-$16.00
Color-Black
Please select a color
Quantity
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Vendor by: Cooling & Air Quality 3C
SKU: 55-06011-006
tower fan

Over 100 years have passed, and Paris Rhône remains committed to providing superior-quality, reasonably priced products to our customers around the world.

We are proud to be leading the way in designing smart, easy-to-use, high-quality home appliances with the future in mind.

Founded in 1915, Paris Rhône have since been creating innovative products which enhance and improve the quality of our customers' daily lives.

Oscillating Height-Adjustable Tower Fan

The Paris Rhône tower fan covers all your cooling needs thanks to the 3 modes, 5 fan speeds, and 90° oscillation. The height-adjustable tower fan can stand at either 36 or 42 inches, and the streamlined body fits neatly in any space to create a refreshing breeze in your home or office.

  • Adjustable Height
  • Widespread Oscillation
  • Remote Control
  • Space-Saving Design
  • Low Noise
  • High Quality

towe fan

tower fan

tower fan

Easy-to-Clean Air Inlet

Remove the grid from the back of the fan to regularly clean it with a wet cloth, or just rinse with water, for optimum performance.

Intuitive LED Display

The remote performs all the same functions as the control panel, except the mute, and the control panel screen light turns off automatically after 1 minute of no operation.

Handle & Remote Storage

Remote control slot gives you the ability to carry and place this tower fan in any room that needs a good dose of ventilation.


tower fan

FAQ

Q: Is there a way to silence it?

A: You can easily mute or unmute the beep by long-pressing the fan mode button while the fan is in operation.

Q: Can I modify the height of this tower fan to suit my preference?

A: Absolutely! This tower fan is equipped with a detachable extension stand, allowing you to adjust its height to accommodate your specific cooling needs. The height can be adjusted from 36 inches to 42 inches, ensuring optimal comfort.

Q: Does this tower fan have a memory function?

A: Yes, indeed. This tower fan is designed with a convenient memory function that stores your previous settings, giving you the ease of recreating your preferred environment with a simple power-up. However, please note that the timer setting is not included in the memory function.

Q: What type of batteries does the remote control require?

A: The remote control of this tower fan utilizes CR2025, 3V batteries. Please ensure the proper installation with the (+) side facing up.

Q: What is the length of the power cord?

A: The power cord of this tower fan measures approximately 4.92 feet, providing you with a sufficient reach for easy placement within your living space.

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.