Blue Jars Cascading Waterfall Incense Burner Holder
Blue Jars Cascading Waterfall Incense Burner Holder
Blue Jars Cascading Waterfall Incense Burner Holder
Blue Jars Cascading Waterfall Incense Burner Holder
Blue Jars Cascading Waterfall Incense Burner Holder
Blue Jars Cascading Waterfall Incense Burner Holder
Blue Jars Cascading Waterfall Incense Burner Holder
Blue Jars Cascading Waterfall Incense Burner Holder
Blue Jars Cascading Waterfall Incense Burner Holder
Blue Jars Cascading Waterfall Incense Burner Holder
1/5
Blue Jars Cascading Waterfall Incense Burner Holder
Blue Jars Cascading Waterfall Incense Burner Holder
Blue Jars Cascading Waterfall Incense Burner Holder
Blue Jars Cascading Waterfall Incense Burner Holder
Blue Jars Cascading Waterfall Incense Burner Holder
1/5

Blue Jars Cascading Waterfall Incense Burner Holder

$45.95
$0.00
Save $-45.95
Quantity
SKU: 3256805023677623
Weight: 0.38kg
Barcode:

Cascading Incense Burner Holder

The Wine Jar Type Ceramic Handicrafts Blue Waterfall Back-flow Incense Burner is a stunning and unique incense holder perfect for those who love to burn incense for its therapeutic benefits. This incense burner is designed to hold back-flow incense cones, specially made to create a smoke waterfall effect when burned.

Made from high-quality ceramic material, this incense burner is durable and long-lasting. It features a wine jar design with intricate details, making it a beautiful decorative piece even when unused.

The incense burner is also designed to be easy to use; light a back-flow incense cone and place it on the candle aromatherapy furnace. As the incense burns, the smoke will flow down the center, creating a mesmerizing smoke waterfall effect.

Features: 

  • Backflow Incense Burner And Holder
  • Material: Ceramic
  • Net weight: 0.38kg / 0.84lbs
  • Size: 12.6cm x 8.4cm x 12.5cm

jar incense burner

Jar Handicrafts Blue Waterfall Incense Burner

It is classified as an Incense Base, perfect for those who love to burn incense for its therapeutic benefits.

It is designed for burning incense and providing a calming and soothing effect to the environment. It creates a mesmerizing smoke waterfall and purifies the air by releasing a pleasant aroma.

Applications: Suitable for use in various settings such as homes, offices, hotels, tea houses, yoga studios, meditation centers, Buddhist temples, and living rooms.

Efficacy: Apart from providing a fresh and pleasant fragrance, it can also help calm the nerves, improve focus and concentration, and enhance the overall ambiance of the space.

cascading waterfall incense burner

In addition to being a beautiful decorative piece, this incense burner also has practical uses. It can be used for smell removal and de-humidification, helping purify your home's air.

The decorative feature of the mental curative effect adds to its benefits as it can help create a relaxing and calming atmosphere.

backflow incense cone burner

The Wine Jar Type Ceramic Handicrafts Blue Waterfall Back-flow Incense Burner is a unique and stunning incense holder perfect for anyone who loves burning incense for its therapeutic benefits or as a decorative piece. It is an ideal addition to any home, office, or meditation space.

incense cone burner and stick holder

Ready to explore our collection? Head to Incense Soul today and browse our categories to find the perfect incense burner. And if you have any questions or concerns, feel free to contact us - we're always happy to help.
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.