const template_name = SHOPLAZZA?.meta?.page?.template_name || ''; const SEARCH_URL = '/search'; const TAG = 'spz-custom-smart-search-location'; const SMART_PRODUCR_SEARCH_WRAP_CLASSNAME = 'app-smart-product-search-container'; const THEME_NAME = window.SHOPLAZZA.theme.merchant_theme_name.replace(/ /g,''); const BREAKPOINT = 960; const DELAY = 300; function diffThemeName(themeNameA, themeNameB){ return themeNameA.toLocaleLowerCase().includes(themeNameB.toLocaleLowerCase()) } const HEADER_DOM_MAP = { eva: 'header .header_grid_layout', geek: `.header-mobile-inner-container`, onePage: 'header .header', wind: 'header #header-nav', nova: 'header .header', hero: 'header .header__nav', 'flash': '#shoplaza-section-header>div>div', 'lifestyle': '#shoplaza-section-header .header__wrapper' } let HEADER_DOM = 'header'; Object.keys(HEADER_DOM_MAP) .map(themeName=>{ if (diffThemeName(THEME_NAME, themeName)) { HEADER_DOM = HEADER_DOM_MAP[themeName]; } }) const SEARCH_ICON_CLASS_MAP = { 'flash': 'app-smart-icon-search-large-flash', 'hero': 'app-smart-icon-search-large-hero', 'geek': 'app-smart-icon-search-large-geek', 'nova': 'app-smart-icon-search-large-nova', }; let SEARCH_ICON_CLASS = 'app-smart-icon-search-large-default'; Object.keys(SEARCH_ICON_CLASS_MAP) .map(themeName=>{ if (diffThemeName(THEME_NAME, themeName)) { SEARCH_ICON_CLASS = SEARCH_ICON_CLASS_MAP[themeName]; } }) class SpzCustomSmartSearchLocation extends SPZ.BaseElement { constructor(element) { super(element); this.mobileHeaderPluginParentEle = null; this.outsideCarouselIndex = 0; this.insideCarouselIndex = 0; this.searchItemType = 'icon'; } static deferredMount() { return false; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.init(); this.listenerResize(); this.initRegisterActions(); } addIconClass(){ document.querySelectorAll('.app-smart-icon-search-large').forEach(e=>{ e.classList.add(SEARCH_ICON_CLASS) }); } moveIcon(){ if (!diffThemeName(THEME_NAME, 'lifestyle')) return; if (this.searchItemType === 'input') return; if (this.isDesktop()) return; const smart_search_dom = document.querySelector('#app-smart-product-search-container-965'); if (!smart_search_dom) return; const hasMovedIcon = !!document.querySelector('.header__wrapper .container .row.header>div>#app-smart-product-search-container-965'); if (hasMovedIcon) return; const headerDivList = document.querySelectorAll('.header__wrapper .container .row.header>div'); const iconBoxDom = headerDivList[headerDivList.length-1] iconBoxDom.appendChild(smart_search_dom, iconBoxDom.firstChild); } init() { this.addIconClass(); this.moveIcon(); if ( this.searchItemType === 'input' ) { document.querySelectorAll('.app-smart-icon-search-large').forEach(e=>e.style.display = 'none'); const mobileSmartSearchDom = document.querySelector(`.smart-search-mobile-container .app-smart-product-search-wrap`); if ( this.isDesktop() ) { document.querySelector(`#app-smart-product-search-container-965`).style="display: block"; if (mobileSmartSearchDom) { document.querySelector(`#app-smart-product-search-container-965`).appendChild(mobileSmartSearchDom); } }else{ if( template_name=='search' ) return; if (!document.querySelector(`.smart-search-mobile-container`)) { const appSmartSearchContainer = document.createElement('div'); appSmartSearchContainer.classList.add('smart-search-mobile-container'); appSmartSearchContainer.classList.add('smart-search-mobile-container-'+THEME_NAME.toLocaleLowerCase()); document.querySelector(HEADER_DOM).appendChild(appSmartSearchContainer); } if (!mobileSmartSearchDom) { document.querySelector(`.smart-search-mobile-container`).appendChild( document.querySelector(`.app-smart-product-search-wrap`) ) } } }else{ document.querySelectorAll('.app-smart-icon-search-large').forEach(e=>e.style.display = 'flex'); } // PC-end not load if (this.isDesktop()) { return; } if (!window.__isLoadAppSmartSearch__) { this.initSmartSearch(); console.log('__isLoadAppSmartSearch__'); } // B-end must reload if (window.self === window.top && !window.__isLoadAppSmartSearch__) { window.__isLoadAppSmartSearch__ = true; } } initSmartSearch() { if (this.hasMobileUpperRightPlugin()) { this.showMobileSmartSearch(); } else { this.addMobileSmartSearch(); } } initRegisterActions(){ this.registOnSearchInputChange(); this.registOnSearchFormSubmit(); this.registOnOutsideCarouselIndexChange(); this.registOnInsideCarouselIndexChange(); this.registGetSearchItemType(); this.registGenerateHotKeywordList(); this.registerAction('onTapHotWord',(invocation)=>{ this.onTapHotWord(invocation.args.type); }); } registOnSearchInputChange(){ this.registerAction('onSearchInputChange',(invocation)=>{ const keyword = invocation.args.keyword; if (keyword === null || !keyword.length) { document.querySelectorAll('.hot-words-carousel-inner-container').forEach(e=>{ e.style='display: block'; }); } else { document.querySelectorAll('.hot-words-carousel-inner-container').forEach(e=>{ e.style='display: none'; }); } }) } registOnSearchFormSubmit(){ this.registerAction('onSearchFormSubmit',(invocation)=>{ const event = invocation.args.event; const keywordArray = event.q || []; const keyword = keywordArray[0]; if (keyword!==null && keyword.length) { this.handleSearchSubmit_(keywordArray,1); } else { this.onTapHotWord('inside') } }) } handleSearchSubmit_(value, retryNum){ SPZ.whenApiDefined(document.getElementById('app-smart-search-965')) .then((ljsSearch) => { try{ ljsSearch.handleSearchSubmit_({ value: value }) }catch(e){ console.log('catch error',retryNum) if( 3 > retryNum ){ this.handleSearchSubmit_(value, retryNum + 1); return; } const searchStr = value[0] || ''; const searchResult = ljsSearch.setThinkSearchData_(searchStr); ljsSearch.afterSearching({ query: searchResult.query, url: `${SEARCH_URL}?q=${searchStr}`, queryType: searchResult.queryType, }) } }) } registOnOutsideCarouselIndexChange(){ this.registerAction('onOutsideCarouselIndexChange',(invocation)=>{ this.outsideCarouselIndex = invocation.args.index || 0; }) } registOnInsideCarouselIndexChange(){ this.registerAction('onInsideCarouselIndexChange',(invocation)=>{ this.insideCarouselIndex = invocation.args.index || 0; }) } registGetSearchItemType(searchItemType){ this.registerAction('getSearchItemType',(invocation)=>{ SPZ.whenApiDefined(document.getElementById('app-smart-search-outside-item-965')) .then((appSmartSearchOutsideItem) => { const search_item_type = appSmartSearchOutsideItem.getData()?.search_item_type; this.searchItemType = search_item_type || this.searchItemType; this.init(); }) }) } registGenerateHotKeywordList(){ this.registerAction('generateHotKeywordList',(invocation)=>{ const search_keywords = invocation.args?.data?.data?.hotKeywordList || []; const isShowHotKeyword = invocation.args?.data?.data?.isShowHotKeyword || false; SPZ.whenApiDefined(document.getElementById('app-smart-search-outside-item-965')) .then((appSmartSearchOutsideItem) => { const hotwords = appSmartSearchOutsideItem.getData()?.search_keywords || []; const new_search_keywords = search_keywords.map((item, index) => { item.url_obj = item.url_obj || {}; const hotwordItem = hotwords.find(e=>e.word === item.word); if (hotwordItem) { item.icon = hotwordItem.icon || ''; } if (!item.urlObj || !item.urlObj.url) { item.urlObj = { ...item.url_obj, url: item.url_obj.type === 'search' ? `${SEARCH_URL}?q=${item.word}` : item.url_obj.url, }; } return item; }); document.querySelectorAll('.app-hot-keyword-render-child') .forEach((ele) => { SPZ.whenApiDefined(ele) .then((hotWordsChildDom) => { hotWordsChildDom.render({ list: new_search_keywords, isShowHotKeyword: isShowHotKeyword, }); }) }); }) }); } onTapHotWord(type){ const index = type === 'inside' ? this.insideCarouselIndex : this.outsideCarouselIndex; SPZ.whenApiDefined(document.getElementById('app-smart-search-outside-item-965')) .then((appSmartSearchOutsideItem) => { const hotwords = appSmartSearchOutsideItem.getData()?.search_keywords || []; const currentHotwordItem = hotwords[index] || null; if (currentHotwordItem && currentHotwordItem.url_obj) { currentHotwordItem.url_obj.url = currentHotwordItem.url_obj.type === 'search' ? `${SEARCH_URL}?q=${currentHotwordItem.word}` : currentHotwordItem.url_obj.url; } SPZ.whenApiDefined(document.getElementById('app-smart-search-965')) .then((ljsSearch) => { if (currentHotwordItem) { ljsSearch.handleHotKeyword_({ word: currentHotwordItem.word, query_type: currentHotwordItem.type, url: currentHotwordItem.url_obj?.url, }); } else { this.handleSearchSubmit_([''],1); } }) }) } getOutsideCarouselConfig(){ return SPZ.whenApiDefined(document.getElementById('app-smart-search-outside-item-965')) .then((appSmartSearchOutsideItem) => { return { ...appSmartSearchOutsideItem.getData(), outsideCarouselIndex: this.outsideCarouselIndex, } }) } listenerResize() { window.removeEventListener('resize', window.smartSearchResizeCallback); window.smartSearchResizeCallback = SPZCore.Types.debounce( this.win, () => { this.init(); }, DELAY ); window.addEventListener('resize', window.smartSearchResizeCallback); } isDesktop() { const mediaQueryList = window.matchMedia(`(min-width: ${BREAKPOINT}px)`); return mediaQueryList.matches; } hasMobileUpperRightPlugin() { return !['geek', 'flash', 'boost'].includes(THEME_NAME.toLocaleLowerCase()); } showMobileSmartSearch() { this.mobileHeaderPluginParentEle = this.getMobileHeaderPluginParentEle(); this.setMobileHeaderIconsPluginStyle(this.mobileHeaderPluginParentEle); } getMobileHeaderPluginParentEle() { const MOBILE_HEADER_PLUGIN_PARENT_ELE_MAP = { nova: '.header__mobile #header__plugin-container', hero: '.header__icons .tw-flex.tw-justify-end.tw-items-center.tw-space-x-7', onePage: '.header__mobile #header__plugin-container', wind: '#header-icons .flex.justify-end.items-center', eva: '#header__icons .plugin_content' }; const headerPluginParentSelector = this.combineMultipleSelectors( Object.values(MOBILE_HEADER_PLUGIN_PARENT_ELE_MAP) ); return document.querySelector(headerPluginParentSelector); } setMobileHeaderIconsPluginStyle(pluginParentEle) { if (!pluginParentEle) { return; } const containHidden = pluginParentEle.classList.contains('md:hidden'); const containTwHidden = pluginParentEle.classList.contains('md:tw-hidden'); if (containHidden || containTwHidden) { Array.from(pluginParentEle.children).forEach((pluginElement) => { if (!this.hasSmartSearchPlugin(pluginElement)) { pluginElement.style.display = 'none'; } }); pluginParentEle.classList.remove('md:hidden', 'md:tw-hidden'); } else { const smartSearchPluginElement = Array.from(pluginParentEle.children).find( (pluginElement) => { return this.hasSmartSearchPlugin(pluginElement); } ); smartSearchPluginElement.style.display = 'block'; } } hasSmartSearchPlugin(pluginElement) { return ( pluginElement.classList.contains(`${SMART_PRODUCR_SEARCH_WRAP_CLASSNAME}`) || pluginElement.querySelectorAll(`.${SMART_PRODUCR_SEARCH_WRAP_CLASSNAME}`).length > 0 ); } addMobileSmartSearch() { this.mobileHeaderIconsEle = this.getMobileHeaderIconsEle(); this.smartSearchWrapEle = this.getSmartSearchWrapEle(); this.appendSmartSearchToHeader(); } getMobileHeaderIconsEle() { // Must be the parent element of the plugin const MOBILE_HEADER_ICONS_ELE_MAP = { geek: '#header-mobile-container .flex.items-center.justify-end.flex-shrink-0', flash: '#header-layout .header__icons', boost: '.header__mobile-bottom .tw-flex.tw-items-center.tw-justify-end.tw-flex-1' }; const headerIconsSelector = this.combineMultipleSelectors( Object.values(MOBILE_HEADER_ICONS_ELE_MAP) ); return document.querySelector(headerIconsSelector); } getSmartSearchWrapEle() { const smartSearchWrapEle = document.querySelector(this.getSmartSearchWrapSelector()); if (!smartSearchWrapEle) { return null; } return smartSearchWrapEle; } appendSmartSearchToHeader() { if (!this.smartSearchWrapEle) { return; } this.mobileHeaderIconsEle.insertAdjacentElement('afterbegin', this.smartSearchWrapEle); } getSmartSearchWrapSelector() { const PLUGIN_POSITION = { DRAWER: 'drawer', HEADER_TOP: 'headerTop' }; // only one this plugin of ancestor element const MOBILE_PLUGIN_POSITION_ELE_MAP = { [PLUGIN_POSITION.DRAWER]: { geek: '#header-menu-mobile #menu-drawer', flash: '#menu-drawer .plugin__header-content', boost: '.header__drawer' }, [PLUGIN_POSITION.HEADER_TOP]: { geek: '#header-menu-mobile #menu-drawer', flash: '#menu-drawer .plugin__header-content', boost: '.header-content .logo-wrap' } }; const MbPluginPositionInTheme = [ ...Object.values(MOBILE_PLUGIN_POSITION_ELE_MAP[PLUGIN_POSITION.DRAWER]), ...Object.values(MOBILE_PLUGIN_POSITION_ELE_MAP[PLUGIN_POSITION.HEADER_TOP]) ]; return Object.values(MbPluginPositionInTheme).reduce((pre, ancestor) => { if (pre === '') { return `${ancestor} .app-smart-product-search-container`; } if (pre.includes(ancestor)) { return pre; } return `${pre},${ancestor} .app-smart-product-search-container`; }, ''); } combineMultipleSelectors(selectorList) { return selectorList.reduce((pre, selector) => { if (pre === '') { return `${selector}`; } if (pre.includes(selector)) { return pre; } return `${pre},${selector}`; }, ''); } } SPZ.defineElement(TAG, SpzCustomSmartSearchLocation);
Pumpkin 18 Tones Mechanical DIY Diamond Painting Music Box LED Kits (YYH10)
Pumpkin 18 Tones Mechanical DIY Diamond Painting Music Box LED Kits (YYH10)
Pumpkin 18 Tones Mechanical DIY Diamond Painting Music Box LED Kits (YYH10)
Pumpkin 18 Tones Mechanical DIY Diamond Painting Music Box LED Kits (YYH10)
Pumpkin 18 Tones Mechanical DIY Diamond Painting Music Box LED Kits (YYH10)
Pumpkin 18 Tones Mechanical DIY Diamond Painting Music Box LED Kits (YYH10)
Pumpkin 18 Tones Mechanical DIY Diamond Painting Music Box LED Kits (YYH10)
Pumpkin 18 Tones Mechanical DIY Diamond Painting Music Box LED Kits (YYH10)
Pumpkin 18 Tones Mechanical DIY Diamond Painting Music Box LED Kits (YYH10)
Pumpkin 18 Tones Mechanical DIY Diamond Painting Music Box LED Kits (YYH10)
Pumpkin 18 Tones Mechanical DIY Diamond Painting Music Box LED Kits (YYH10)
Pumpkin 18 Tones Mechanical DIY Diamond Painting Music Box LED Kits (YYH10)
Pumpkin 18 Tones Mechanical DIY Diamond Painting Music Box LED Kits (YYH10)
Pumpkin 18 Tones Mechanical DIY Diamond Painting Music Box LED Kits (YYH10)
Pumpkin 18 Tones Mechanical DIY Diamond Painting Music Box LED Kits (YYH10)
Pumpkin 18 Tones Mechanical DIY Diamond Painting Music Box LED Kits (YYH10)
Pumpkin 18 Tones Mechanical DIY Diamond Painting Music Box LED Kits (YYH10)
Pumpkin 18 Tones Mechanical DIY Diamond Painting Music Box LED Kits (YYH10)
Pumpkin 18 Tones Mechanical DIY Diamond Painting Music Box LED Kits (YYH10)
Pumpkin 18 Tones Mechanical DIY Diamond Painting Music Box LED Kits (YYH10)
Pumpkin 18 Tones Mechanical DIY Diamond Painting Music Box LED Kits (YYH10)
Pumpkin 18 Tones Mechanical DIY Diamond Painting Music Box LED Kits (YYH10)
1/22
Pumpkin 18 Tones Mechanical DIY Diamond Painting Music Box LED Kits (YYH10)
Pumpkin 18 Tones Mechanical DIY Diamond Painting Music Box LED Kits (YYH10)
Pumpkin 18 Tones Mechanical DIY Diamond Painting Music Box LED Kits (YYH10)
Pumpkin 18 Tones Mechanical DIY Diamond Painting Music Box LED Kits (YYH10)
Pumpkin 18 Tones Mechanical DIY Diamond Painting Music Box LED Kits (YYH10)
Pumpkin 18 Tones Mechanical DIY Diamond Painting Music Box LED Kits (YYH10)
Pumpkin 18 Tones Mechanical DIY Diamond Painting Music Box LED Kits (YYH10)
Pumpkin 18 Tones Mechanical DIY Diamond Painting Music Box LED Kits (YYH10)
Pumpkin 18 Tones Mechanical DIY Diamond Painting Music Box LED Kits (YYH10)
Pumpkin 18 Tones Mechanical DIY Diamond Painting Music Box LED Kits (YYH10)
Pumpkin 18 Tones Mechanical DIY Diamond Painting Music Box LED Kits (YYH10)
Pumpkin 18 Tones Mechanical DIY Diamond Painting Music Box LED Kits (YYH10)
Pumpkin 18 Tones Mechanical DIY Diamond Painting Music Box LED Kits (YYH10)
Pumpkin 18 Tones Mechanical DIY Diamond Painting Music Box LED Kits (YYH10)
Pumpkin 18 Tones Mechanical DIY Diamond Painting Music Box LED Kits (YYH10)
Pumpkin 18 Tones Mechanical DIY Diamond Painting Music Box LED Kits (YYH10)
Pumpkin 18 Tones Mechanical DIY Diamond Painting Music Box LED Kits (YYH10)
Pumpkin 18 Tones Mechanical DIY Diamond Painting Music Box LED Kits (YYH10)
Pumpkin 18 Tones Mechanical DIY Diamond Painting Music Box LED Kits (YYH10)
Pumpkin 18 Tones Mechanical DIY Diamond Painting Music Box LED Kits (YYH10)
Pumpkin 18 Tones Mechanical DIY Diamond Painting Music Box LED Kits (YYH10)
Pumpkin 18 Tones Mechanical DIY Diamond Painting Music Box LED Kits (YYH10)
1/22

Pumpkin 18 Tones Mechanical DIY Diamond Painting Music Box LED Kits (YYH10)

£19.19
£38.38
Save 50%
Quantity
Free Shipping Over £50【Uk (After Discount )】
£5.99 Shipping Fee【Uk】
Secure payments
18 Tones Mechanical DIY Diamond Painting Sounding Music Box Handicraft Handmade Acrylic LED Rhinestones Musical Instrument Kits Desk Decoration Ornaments Crafts Gifts for Kids Adults
Feature:
Product material: The base is made of acrylic and fits with the music movement. It is composed of three parts: tone comb, metal cylinder and mainspring.
Melody: 18-note precise movement, clear and comfortable sound. Music plays smoothly, twist the clock and enjoy classical music. Its sound makes you feel like you are in spring.
Color changing LED light: Turn on the switch, the light is slow bright light, warm gradient light can always create a friendly, romantic and dreamy atmosphere.
The point drill music box has a beautiful design, once you turn it gently to the right and then release it, the music will play. Very simple to use and the perfect decoration for a room or living room.
Gift: It will be a precious keepsake for years to come. This music box is suitable as a gift for beautiful music and great styling, whether it's Christmas, birthdays, school season and more.
High Quality: Color special-shaped drill, DIY, with beautiful colored patterns and finer details.
Perhaps the greatest charm of the mechanical music box is that it can solidify the abstract music combined with the rotating pattern of the image into a figurative artwork.
The diamond pattern and the dynamism of the rotation exude the beauty of the mechanical movement.
18-tone movement, 18-tone music is about 15 seconds.

Specification:
Product Name: Diamond Music Box
Packing weight: 350g
Packaging material: Color box
Product material: Acrylic, small metal movement
Product size: 16x15x4cm/6.3x5.91x1.57in
Product color: As shown
Category: Contemporary
Pronunciation principle: Mechanical 18-tone movement
Lighting principle: LED light (battery not included)

Describe:
When time meets mechanical music! !
Whenever they hit too many wrong notes at a moment, day, or period of their lives, the mesmerizing tunes of musical robots are by their side.
A sweet tune blended with a subtle fragrance, you can also find peace outside of work.
A child sits quietly beside a musical robot dreaming, as if in the arms of its mother. When her soul dances with the melody, an older woman forgets the weight of her years, the melodious sound of the music box often evokes people's memories of the beautiful past, even haunting dreams, falling into the memory of time and years.

Maintenance of the music box:
The music movement is mainly metal, and the main attention is to prevent moisture and avoid metal oxidation.

Steps of DIY point drill:
1. Open the package and check whether the tools for diamond painting are complete;
2. According to the color of the resin diamond, 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 on the board and start pasting until it is finished;
4. After the completion, in order to make the diamond stable, you can take some books and put them on the acrylic board for a while;
5. Finally finished, you can decorate your home with your achievements and add vitality to your home.

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 X Battery Box with Light Bar
1 X Installation Tool with Screw
1 X Main Pattern Board
3 X Middle Partitions
6 X Guards
1 X Music Movement
1set X Diamond Bag
1set X Diamond Painting Tool

Selling point content
Feature:
Product material: The base is made of acrylic and fits with the music movement. It is composed of three parts: tone comb, metal cylinder and mainspring.
Melody: 18-note precise movement, clear and comfortable sound. Music plays smoothly, twist the clock and enjoy classical music. Its sound makes you feel like you are in spring.
Color changing LED light: Turn on the switch, the light is slow bright light, warm gradient light can always create a friendly, romantic and dreamy atmosphere.
The point drill music box has a beautiful design, once you turn it gently to the right and then release it, the music will play. Very simple to use and the perfect decoration for a room or living room.
Gift: It will be a precious keepsake for years to come. This music box is suitable as a gift for beautiful music and great styling, whether it's Christmas, birthdays, school season and more.
High Quality: Color special-shaped drill, DIY, with beautiful colored patterns and finer details.
Perhaps the greatest charm of the mechanical music box is that it can solidify the abstract music combined with the rotating pattern of the image into a figurative artwork.
The diamond pattern and the dynamism of the rotation exude the beauty of the mechanical movement.
18-tone movement, 18-tone music is about 15 seconds.

Standard shipping fee is £4.99(UK)

Shipment takes 7 to 20 business days(UK)

Shipping and Delivery time

At uk.diamondpaintinggifts.com, we care about the speed of delivery. We understand that the delivery of goods to your hand nimbly is important.

About Shipping
Receiving time = Processing time +Shipping time 
Processing time: 1-2 business days.This typically takes 1 to 2 days; however, it may take longer time due to order surge.
Free Shipping:7-20 business days

NOTES:

1.Order Processing: The amount of time it takes for us to prepare your order for shipping. This typically takes 1 to 2 days; however, it may take longer time due to order surge.
2. Delivery time: The amount of time it takes to receive your order after your order has been shipped. Delivery times can vary depending on your location and shipping methods. Please check details below.
3. We offer free shipping world without checking number. Direct Line delivery and Express delivery if your order reach certain amount, check details below.
4. Direct Line delivery and Express delivery have specific tracking information and can be tracked through “My Order” section in your account or “Order Status” on the top of uk.diamondpaintinggifts.com website.

Track Your Order

It may take up to 5 business days after your order has shipped for your tracking information to become available online (it might take longer depending on how fast the postal services are processing shipments).

We accept the following payment method:

-PayPal

PayPal: the most convenient payment method in the world

We primarily uses PayPal to process secure payments. Through PayPal, we accept MasterCard, VISA, American Express, Discover, and bank transfer (debit card).You can connect your PayPal, credit card, debit card or bank account to PayPal for purchasing some of our products. After submitting an order, you will be redirected to PayPal to complete the transaction.
1.Log in to your PayPal account or use Credit Card Express;
2.Enter your card details and the order will be shipped to your PayPal address. Then click “Submit”;
3.Your payment will be processed and an invoice will be sent to your e-mail address;
NOTE: Your order will be shipped to your PayPal address. Please ensure that it is correct and complete.

About Diamond Painting:


What is Diamond Painting?
Similar to both cross-stitch and paint-by-numbers, diamond painting is a new creative hobby that has taken the world by storm, especially fans of DIY crafts. Crafters all around the world have fallen in love with this activity because it is easy to learn and incredibly rewarding. Even novices and people who struggle with other crafts find diamond painting relaxing and enjoyable. Mastering the basics is a breeze, and people of all ages and skill levels can create breathtaking artworks.

What’s Included in a Diamond Painting Kit?
Our Diamond Painting kits include a canvas and a set of painting tools (Pen, Tray, Wax , Rhinestones)【Without Frame】

How do I get started?
Really, any of our diamond painting kits are a great way to get started, because they come with everything you need!
What we recommend to start with is a smaller sized diamond painting, so you can make sure it's something you enjoy and that you don't bite off more than you can chew. Some diamond paintings take weeks!

How to Use Discount Code?
The discount can be applied on the payment page. Just copy and paste your code and select "Apply" to redeem.

What is the best size for diamond painting?

There are different sizes of diamond painting Kits. The bigger the size of a canvas, the better the effect you will get at the end. Smaller canvas can give a “Lego brick” effect, while bigger canvas give a more realistic piece of art.

Note:The size indicated in our title are canvas dimensions and not picture size.

About Delivery:

How much will delivery cost?(To UK)

Delivery fees costs vary based on the delivery window.
For Standard Shipping(7-25 days), Order Value below £50, shipping fee is £5.99;Order Value over £50, free shipping.
IMPORTANT:Shipping fee is calculated at the discounted price

For Fast Shipping (7-10days),Shipping fee on all orders is £46.99.(If you choose Fast Shipping, in order to deliver faster, please leave a message to note "Fast Shipping")

How can I qualify for free delivery?

Free delivery on purchases over £50 (after discount)*

How do I place a Standard Delivery order?

To place a standard shipping order, simply add the product to your cart, select your shipping address and fill in the information. Follow the checkout process to complete your order.

How do I place a Fast Delivery order?

To place a Fast Shipping order, simply add the product to your cart, select your shipping address and fill in the information. Follow the checkout process to complete your order.(in order to deliver faster, please leave a message to note "Fast Shipping")

Hot Sale Collection List