Kunlun Mountains Large Backflow Incense Burner Lamp With LED
Kunlun Mountains Large Backflow Incense Burner Lamp With LED
Kunlun Mountains Large Backflow Incense Burner Lamp With LED
Kunlun Mountains Large Backflow Incense Burner Lamp With LED
Kunlun Mountains Large Backflow Incense Burner Lamp With LED
Kunlun Mountains Large Backflow Incense Burner Lamp With LED
Kunlun Mountains Large Backflow Incense Burner Lamp With LED
Kunlun Mountains Large Backflow Incense Burner Lamp With LED
2/4
Kunlun Mountains Large Backflow Incense Burner Lamp With LED
Kunlun Mountains Large Backflow Incense Burner Lamp With LED
Kunlun Mountains Large Backflow Incense Burner Lamp With LED
Kunlun Mountains Large Backflow Incense Burner Lamp With LED
2/4

Kunlun Mountains Large Backflow Incense Burner Lamp With LED

$225.95
$285.95
Save $60.00
ColorBrown
Please select a color
Quantity
SKU: 47011008-kh105
Weight: 2.21kg
Barcode:

 

Large Incense Burner

Our Kunlun Mountains Large Incense Burner is for those looking for that unusual and extraordinary design that will satisfy even the most demanding customers. This LED incense burner is the perfect decoration for your home, adding the right relaxing atmosphere.

The Kunlun is one of Asia's most extended mountain chains (1900 mi) that presents the Sacred Land of All Gods. Kunlun refers to distant, exotic, and mysterious places. Different locations of Kunlun have been ascribed in the various myths, legends, and semi-historical accounts in which it appears.

 Light the incense cone, place it on the top of the large incense burner, then watch the smoke slide down.

Features:

  • Exclusive ceramic incense burner
  • Large incense burner
  • LED incense burner
  • Mountain incense burner
  • 2 color variants (White/Brown Mountain)
  • Incense cones not included
  • Mesmerizing & calming flowing cascade effect
  • Size: 16.7″ x 3.9″ x 14.6″  (42.5cm x 10cm x 37cm)
  • Plug type: USB
  • Material: Ceramic
  • Net weight: 2.21kg / 4.87lbs
  • SKU for Brown: 47011008-kh105
  • Barcode for Brown: 0731559085735
  • SKU for White: 47011008-kh106
  • Barcode for White: 0731559085742

large incense burner

LED Incense Burner

It features a LED round light. When you turn on the switch at the bottom of the led incense burner, the incense burner will flash a beautiful color.

This unique led incense burner helps you be present, allowing you to eliminate outside factors and find inner peace and harmony.

Mountain Incense Burner

Our large mountain incense burner is perfect as a gift that will not spoil anything; on the contrary, you are giving something spectacular, beautiful, and practical. Moreover, this ceramic incense burner is a lovely decoration suitable for any place.

If you are unsure of your choice of incense cones, we recommend you try the mixed cones for the first time.

led incense burner

Become a part of our community and check out the latest customer photos on our Instagram page or Incense Soul Facebook.

We offer free worldwide shipping for all orders over $ 75. Express delivery options are also available.

Explore Incense Soul, and find our exclusive Backflow Incense Burners and Incense Cones for your home.

mountain incense burner

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.