🛒🛒Extra 5% OFF Code: 【VAVD2】 + Free Shipping Over $69
HOT
5D DIY Craft
Diamond Painting
Diamond Painting Tool
NEW
For 5D DIY Craft
For Diamond Painting
Bundle Sale
Thetoydeal House
Popular in TTD
Candy House
Valentine's Day
Disney Cartoon
Pretty Storage Box & Bag
Cute Cartoon & Film Crafts
Beauty & Man Crafts
Flowers & Garden crafts
Lovely Animals Crafts
Gnome
Diamond Crafts
DIY keychain
DIY Pendant
DIY Ornament
DIY Sticker
DIY Bookmark
DIY Coaster
DIY Bag
DIY Mirror
DIY Greeting Card
DIY Notebook
DIY Garden Stake
DIY Cup
DIY Storage Box
DIY Jewelry
DIY Clock
DIY Lamp
DIY Earring
DIY Fashion Accessories
DIY Fridge Magnate
Diamond Painting Kits
All Diamond Painting
Animal
Flower
Character
Cartoon
Abstract
Festival
Landscape
DIY Tools
Piont Drill Pen
DIY Toolkit
DIY Frame
Storage Box
Glue
240822
HOT
5D DIY Craft
Diamond Painting
Diamond Painting Tool
NEW
For 5D DIY Craft
For Diamond Painting
Bundle Sale
Thetoydeal House
Popular in TTD
Candy House
Valentine's Day
Disney Cartoon
Pretty Storage Box & Bag
Cute Cartoon & Film Crafts
Beauty & Man Crafts
Flowers & Garden crafts
Lovely Animals Crafts
Gnome
Diamond Crafts
Hot
DIY keychain
DIY Pendant
DIY Ornament
DIY Sticker
DIY Bookmark
DIY Coaster
DIY Bag
DIY Mirror
DIY Greeting Card
DIY Notebook
DIY Garden Stake
DIY Cup
DIY Storage Box
DIY Jewelry
DIY Clock
DIY Lamp
DIY Earring
DIY Fashion Accessories
DIY Fridge Magnate
Diamond Painting Kits
All Diamond Painting
30*30CM
30*40CM
40*30CM
Special Shaped Drill
AB Drill
AB Square Drill
AB Round Drill
Animal
Cat
Dog
Bird
Butterfly
Wolf
Tiger
Peacock
Horse
Elephant
Deer
Dragon
Lion
Bear
Eagle
Dolphin
Fish
Rabbit
Owl
Flower
Sunflower
Rose
Tree
Cactus
Lotus
Dandelion
Character
Beauty
Skull
Girl
Angel
Nutcracker
Cartoon
Doll
Gnome
Snowman
Precious Moment
Disney
Pokémon
Princess
Abstract
Dreamcatcher
Alphabet
Mandala
Love
Letter
Festival
Easter
Religion
Christmas
Halloween
Thanksgiving's Day
Mother's Day
Independence Day
Valentine's Day
Landscape
Castle
Sea
Truck
Vehicle
DIY Tools
Piont Drill Pen
DIY Toolkit
DIY Frame
Storage Box
Glue
240822
Login
Register
Login
Register
1 / 8
You May Also Like
Don't Like These?
0%
OFF
TTD
Mandala Diamond Painting Craft DIY Mirror
965984.06
$9.99
18 sold
Qty
99 in stock
-
+
Add to Cart
Buy Now
Product Description
Reviews
Product Description
Specification:
Origin: Mainland China
Diamond Shape: Partial Special-shaped Drill
Name: Single sided Sticking Diamond Small Mirror
Material: plastic+resin diamond+glass
Size: 70*70*10mm/2.76*2.76*0.39in
Pattern: XJ001/XJ002/XJ003/XJ004/XJ005/XJ006/XJ007/XJ008/XJ009XJ010(optional)
DIY Diamond Painting Production Steps:
1. Open the packaging box and check the special tools for diamond painting
2. Check the color of resin diamonds and arrange them in coding order
3. Uncover the tape image above and you will see many symbols corresponding to the color coding
4. According to the corresponding color coding fixture, the resin is embedded with diamonds
5. Suggest a resin diamond set to complete faster
6. In order to create a perfect diamond painting, place the drawings in one place, without leaving diamonds on each line of symbols
7. To cut a good figure on the drawing, please install the classification array on the plane of the material above
8. Splicing needs to be flat, neat, and free from cracks
9. After good hard work, the remaining glue gaps match the symbols of diamonds
This is a DIY diamond painting, not completed. You need to complete it yourself.
Note:
Due to the different monitor and light effect, the actual color of the item might be slightly different from the color showed on the pictures. Thank you!
Please allow 1-2cm measuring deviation due to manual measurement.
Package Content:
3 X Mirror
1 X Drilling Package
1 X Point Drilling Disc
1 X Point Drill Pen
Reviews
Share
Tweet
Pin it
You May Also Like
Don't Like These?
Collection list
Customer Reviews
Here are what our customers say.
Write a Review
Write a Review
Reviews
With Photos
Newest
Newest
Most liked
Highest ratings
Lowest ratings
Customer Reviews
Reviews
With Photos
Wow you reached the bottom
Newest
Most liked
Highest ratings
Lowest ratings
×
${function(){ const limit = typeof data === 'number' ? data : 0; return `
Pictures/Videos (
${limit || 0}/5
)
` }()}
${(function(){ const closeIcon = '
'; if (item.type === 'image') { return `
${closeIcon}
` } return `
${closeIcon}
` })()}
Submit Comments Anonymously
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.
0