4pc Bird DIY Diamond Painting Car Air Vent Clip Air Freshener for Adult Beginner

$5.40
Quantity
Wholesale Coupon

Description
Specification:
Origin (country or region): Mainland China (Origin)
Product size: 50.00x50.00x10.00mm/1.97x1.97x0.39inch
Style: Modern
Material: Resin Bright Diamond Shaped Diamond + Acrylic
Fragrance: Lavender / Ocean / Cologne Random fragrance
Craftsmanship: handmade

Occasion: suitable for gift giving, party supplies, wedding travel street photography accessories


Features:
DIY painting, originality, painting with resin sequins, resin dazzling sequins unique luster, shining light, is currently the most popular DIY jewelry.
Wealth and good luck diamond painting embroidery home decoration
Perfect decoration for your living room or bedroom to match different decoration styles. We believe you will like it
DIY diamond dot drilling product production steps:
1. Open the package and check whether the tools for diamond painting are complete;
2. According to the resin diamond color code, choose a color on the plate. If the same color is pasted at one time, the speed can be increased;
3. Find the corresponding color code on the product and start pasting until it is completed;
4. After completion, in order to make the diamond painting stable, you can take some books and press them on the diamond for a while;
5. Finally finished, enjoy decorating your home and add vitality to your home.
Precautions for DIY diamond painting:
1. Refer to the previous operation steps
2. If you don't know what color to use, please refer to the color chart

Note:
1. This is a DIY diamond painting product, not finished, you need to finish it yourself.
2. Due to different monitor settings and lighting conditions, the actual color of the item may vary slightly from the pictures. Thanks for your understanding!
3. Please allow a 1-2 cm difference in measurements due to manual measuring.


Package Content:
1 set x car aromatherapy decoration
1 set x drilling kit (rhinestones need to be pasted) (1 x drilling pen, 1 x drilling plate, 1 x drilling mud)

Selling point content
Bird 4 Pc/ Set DIY Diamond Car Air Freshener Diamond Art Car Air Vent Clip Aromatherapy Car Interior Accessories for Adults Beginners Paint Craft Supplies Car Air Conditioning Outlet Clip
Features:
1.Create Stunning Art: Our DIY diamond painting car interior decor charm enables you to craft exquisite art pieces to adorn your home or give as handmade gifts. The concept, similar to paint by numbers, involves a sticky template with numbered sections.
2.Relaxing Craft Activity: Engage in a therapeutic hobby that promotes relaxation. Perfect for adults and Beginners (ages 6 and up), our diamond car air freshener provides a calming and enjoyable experience.
3.Step-by-Step Creation for diamond art car air vent clip aromatherapy kit: Utilize our easy-to-follow process by lifting colored resin gems with the provided tool and placing them on their corresponding numbers on the template.
4.Unleash Creativity: Turn simple designs into mesmerizing crystal art pieces with our diamond art car air vent clip aromatherapy kit. It's an ideal way to express yourself artistically.
5.Perfect Gift Idea: Present your loved ones with a completed masterpiece or give them a diamond art car air vent clip aromatherapy kit to create their own, offering a unique twist on traditional gifts.
Customer Reviews
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.