DMC Colors Number Label Stickers for Diamond Painting Storage Box(Square+Round)、[Everydayedeals]
DMC Colors Number Label Stickers for Diamond Painting Storage Box(Square+Round)、[Everydayedeals]
DMC Colors Number Label Stickers for Diamond Painting Storage Box(Square+Round)、[Everydayedeals]
DMC Colors Number Label Stickers for Diamond Painting Storage Box(Square+Round)、[Everydayedeals]
DMC Colors Number Label Stickers for Diamond Painting Storage Box(Square+Round)、[Everydayedeals]
DMC Colors Number Label Stickers for Diamond Painting Storage Box(Square+Round)、[Everydayedeals]
DMC Colors Number Label Stickers for Diamond Painting Storage Box(Square+Round)、[Everydayedeals]
DMC Colors Number Label Stickers for Diamond Painting Storage Box(Square+Round)、[Everydayedeals]
1 / 8
DMC Colors Number Label Stickers for Diamond Painting Storage Box(Square+Round)、[Everydayedeals]
DMC Colors Number Label Stickers for Diamond Painting Storage Box(Square+Round)、[Everydayedeals]
DMC Colors Number Label Stickers for Diamond Painting Storage Box(Square+Round)、[Everydayedeals]
DMC Colors Number Label Stickers for Diamond Painting Storage Box(Square+Round)、[Everydayedeals]
DMC Colors Number Label Stickers for Diamond Painting Storage Box(Square+Round)、[Everydayedeals]
DMC Colors Number Label Stickers for Diamond Painting Storage Box(Square+Round)、[Everydayedeals]
DMC Colors Number Label Stickers for Diamond Painting Storage Box(Square+Round)、[Everydayedeals]
DMC Colors Number Label Stickers for Diamond Painting Storage Box(Square+Round)、[Everydayedeals]
Save $-8.99
EDS

DMC Colors Number Label Stickers for Diamond Painting Storage Box(Square+Round)

$8.99
18 sold
Qty 2998 in stock

1 Set Color Number Labels 26 Letters 1-100 diamond Painting Accessories Tools for diamond Painting Storage Boxes for Adults Kids
Feature:
1.Package Content: You will get 1 sets of color number stickers. One set includes numbers from 1 to 100, 26 letters from A to Z, and DMC 447 color numbers. Almost all color numbers are included, enough to satisfy your demands
2.Size: Each sheet of color number stickers measures about 16.5 x 19.5(17.5)cm/ 6.5 x 7.68(6.89) inch. And each small labels measure about 1 x 1cm/0.39 x 0.39 inch. The size is perfect for marking colors.The size is perfect for marking colors on various sizes of storage boxes.
3.Wide Application: The color number labels can be widely used on many handwork projects, such as full drill/ partial drill diamond Painting, cross stitches, embroidery, etc. With the help of these dmc color number stickers, you will find everything goes smoothly and in an organized way while doing diamond art projects.
4.Easy to Use: Our diamond Painting labels are self-adhesive, without any tools required, so you can easily paste them on diamond Painting container. After that, you can start your artworks and quickly find the color you want.
5.Good Helper for Organizing Colors: Each numerical number corresponds to a color, making sorting and finding colors easy.

Specification:
Origin: Mainland China
Use: Paintings
Product name: DMC color number sticker
Product color: color
Packaging method: PE bag
Commodity details: 1-100 number sticker+26 English letters+DMC447 color code
Commodity size: (square) color DMC color number sticker (16.5*17.5cm/6.5*6.89in, single diameter 0.9*1.2cm/0.35*0.47in)
(Round) color DMC color number sticker (16.5*19.5cm/6.5*7.68in, single diameter 1.1cm/0.43in)
Commodity weight: about 25g
Shape: square+round(optional)

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:
1 Set X Color Number Stickers

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.