Ceramic Space Heater With Air Cooler Fan Function, 1000W PTC Electric Heater With Timed Shutdown, Dustproof Net, Thermostat, Fast Safety Heat, Upgraded Shakable Small Heater Fan for Office Home, White
Ceramic Space Heater With Air Cooler Fan Function, 1000W PTC Electric Heater With Timed Shutdown, Dustproof Net, Thermostat, Fast Safety Heat, Upgraded Shakable Small Heater Fan for Office Home, White
Ceramic Space Heater With Air Cooler Fan Function, 1000W PTC Electric Heater With Timed Shutdown, Dustproof Net, Thermostat, Fast Safety Heat, Upgraded Shakable Small Heater Fan for Office Home, White
Ceramic Space Heater With Air Cooler Fan Function, 1000W PTC Electric Heater With Timed Shutdown, Dustproof Net, Thermostat, Fast Safety Heat, Upgraded Shakable Small Heater Fan for Office Home, White
Ceramic Space Heater With Air Cooler Fan Function, 1000W PTC Electric Heater With Timed Shutdown, Dustproof Net, Thermostat, Fast Safety Heat, Upgraded Shakable Small Heater Fan for Office Home, White

Ceramic Space Heater With Air Cooler Fan Function, 1000W PTC Electric Heater With Timed Shutdown, Dustproof Net, Thermostat, Fast Safety Heat, Upgraded Shakable Small Heater Fan for Office Home, White

$30.99
$0.00
-$-30.99
Quantity
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Vendor by: Medgthi
SKU: MYJ/ZJ/230221/OD-01967

Ceramic Space Heater With Air Cooler Fan Function, 1000W PTC Electric Heater With Timed Shutdown, Dustproof Net, Thermostat, Fast Safety Heat, Upgraded Shakable Small Heater Fan for Office Home, White

  • Features:

    • Easy Control Heater : Optional 3 Temperture Modes,"I" is for producing heat at 450watts, "II" will produce heat faster and hotter at 1000 watts, and ”Fan” will blow out cool air.
    • Overheat protection & Tip-over protection - Thermostat control of the heater will turn the heater off when it reaches a preset temperature and turn the heater back on when the temperature dips below the thermostat setting. When the heater is accidentally overturned or the angle between the heater base and the ground exceeds 45 degrees, the heater will automatically cut off power to protect the safety of you and your family.
    • Compact and Powerful :Dimensions:9.45" x 7.28" x 5.31", 2.81 pounds light weight mini heater easy to carry around .Ceramic space heaters can quick heating within 2S.Heat 200 square feet in seconds. By heating the required small space instead of using other centralized heaters to heat the entire house, helping to save electricity bills. Small weight, easy to carry, suitable for bedroom, living room, study and office, etc.
    • Ceramic Technology :PTC heating element is the abbreviation of ceramic electric heating element, which is more stable than traditional heating element, heating quickly, safe and reliable. The heater has low thermal resistance, rapid heat exchange, automatic constant temperature, no redness on the surface of the electric heating tube heater, and can prevent burns, fires and other safety hazards. At present, it is an ideal electric heating component.
    • Low Noise :The noise this ceramic heater makes is lower than 45 dB, quiet enough for most people to use in a bedroom while sleeping. Provide a quiet space for your comfort.

    Desciption:

    Rated voltage: 110V-220V

    Rated frequency: 50HZ to 60HZ

    Rated power: first grade 450W, second grade 1000W, third grade 5W

    Heating mode: PTC ceramic heating

    Control mode: Touch the key

    Gear: First gear, second gear, natural wind

    Shake head mode: 45°

    Timing function: 1 hour, 2 hours, 4 hours

    Length of power cord: 1.5m

    Features: Overheat protection, 45 degrees anti-tipping electronic switch, 8 hours automatic shutdown, warm and cold mode, three seconds fast heating

    Hidden handle, detachable cleaning filter dust filter

    Main material: ABS+ electronic components

    Net weight: 890g

    Gross weight: 1030g

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.