NAIZEA Heated Snow Melting Mats, Residential Snow Melting Stair Mats, Roof and Valley Heating Mats, Snow and Ice Melting Mats, Outdoor Non-slip Mats, 20" x 60"
NAIZEA Heated Snow Melting Mats, Residential Snow Melting Stair Mats, Roof and Valley Heating Mats, Snow and Ice Melting Mats, Outdoor Non-slip Mats, 20" x 60"
NAIZEA Heated Snow Melting Mats, Residential Snow Melting Stair Mats, Roof and Valley Heating Mats, Snow and Ice Melting Mats, Outdoor Non-slip Mats, 20" x 60"
NAIZEA Heated Snow Melting Mats, Residential Snow Melting Stair Mats, Roof and Valley Heating Mats, Snow and Ice Melting Mats, Outdoor Non-slip Mats, 20" x 60"
NAIZEA Heated Snow Melting Mats, Residential Snow Melting Stair Mats, Roof and Valley Heating Mats, Snow and Ice Melting Mats, Outdoor Non-slip Mats, 20" x 60"

NAIZEA Heated Snow Melting Mats, Residential Snow Melting Stair Mats, Roof and Valley Heating Mats, Snow and Ice Melting Mats, Outdoor Non-slip Mats, 20" x 60"

$189.00
$0.00
-$-189.00
Quantity
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Vendor by: NAIZEA
SKU: RXD-20-60-09112
NAIZEA heated snow melting mats are made of high quality rubber and heating wires, wear-resistant, waterproof, environmentally friendly, odorless and durable enough to withstand the harsh weather all winter long. Multiple sizes are available for you to choose from, you can buy single or multiple snow melting mats to use in combination according to your needs, but the maximum power is 1800 watts. It quickly cleans your roads with a 3-inch/hour melting rate and 104°F heating temperature, making it easy to melt snow and ice without the hassle of salting the snow. This snow melting mat can be used indoors and outdoors, park entrances, garages, hotel entrances, supermarket entrances and industrial uses. Our outdoor walkway heating mats are suitable for all types of applications including your roof, stairs, grass, floors and more, so you no longer have to climb up a ladder to shovel snow off your roof.

Product Information: 4 sizes to choose from: 20" x 60", 30" x 60", 30" x 48", 40" x 60". It quickly cleans sidewalks at 3 inches/hour snow melt rate and 104°F heating temperature. Suitable for most surfaces such as concrete, asphalt, stone and wood decks. Take the cold out of this winter.

 

STORAGE: Turn off the power when there is a threat of snow or ice. Before storing your snow melting mat, clean it with water, place the power cord and power unit inside the rolled up mat and keep it in its original packaging to prevent damage. Prolonged exposure of the mat to excessive summer UV sunlight can damage the mat.

 

EASY INSTALLATION: There is no need for complicated installation of this snow melting mat, it plugs easily into a standard 110-volt outlet, saving you time and effort. Our snow melting mats come with a 10-foot power cord and a leak-proof plug with an operating status indicator. You can use one snowmelt pad alone or multiple pads in conjunction with each other. (up to 1800 watts)

 

STAND THE TEST OF WINTER: Our heated outdoor mats are made of high quality rubber and heating wire. They are wear-resistant, waterproof, eco-friendly, odorless and durable enough to withstand the harsh weather outside all winter long. The textured surface provides excellent traction.

 

WIDE APPLICATION: Our heated snow melting walkway mats are suitable for all types of applications, including roofs, stairs, lawns, floors and more. You can also roll them up for easy storage during the warmer months. Ideal for both residential and commercial use.

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.