${item}
Recently searched
${item}
Hot searches
${item.word}
Results
${item.highlightHtml}
const TAG = 'spz-custom-smart-search-location'; const SMART_PRODUCR_SEARCH_WRAP_CLASSNAME = 'app-smart-product-search-wrap'; const THEME_NAME = window.SHOPLAZZA.theme.merchant_theme_name; const BREAKPOINT = 960; const DELAY = 300; class SpzCustomSmartSearchLocation extends SPZ.BaseElement { constructor(element) { super(element); this.mobileHeaderPluginParentEle = null; } static deferredMount() { return false; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.init(); this.listenerResize(); } init() { // 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(); } } 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-wrap`; } if (pre.includes(ancestor)) { return pre; } return `${pre},${ancestor} .app-smart-product-search-wrap`; }, ''); } combineMultipleSelectors(selectorList) { return selectorList.reduce((pre, selector) => { if (pre === '') { return `${selector}`; } if (pre.includes(selector)) { return pre; } return `${pre},${selector}`; }, ''); } } SPZ.defineElement(TAG, SpzCustomSmartSearchLocation);
${item}
Recently searched
${item}
Hot searches
${item.word}
Results
${item.highlightHtml}
const TAG = 'spz-custom-smart-search-location'; const SMART_PRODUCR_SEARCH_WRAP_CLASSNAME = 'app-smart-product-search-wrap'; const THEME_NAME = window.SHOPLAZZA.theme.merchant_theme_name; const BREAKPOINT = 960; const DELAY = 300; class SpzCustomSmartSearchLocation extends SPZ.BaseElement { constructor(element) { super(element); this.mobileHeaderPluginParentEle = null; } static deferredMount() { return false; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.init(); this.listenerResize(); } init() { // 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(); } } 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-wrap`; } if (pre.includes(ancestor)) { return pre; } return `${pre},${ancestor} .app-smart-product-search-wrap`; }, ''); } combineMultipleSelectors(selectorList) { return selectorList.reduce((pre, selector) => { if (pre === '') { return `${selector}`; } if (pre.includes(selector)) { return pre; } return `${pre},${selector}`; }, ''); } } SPZ.defineElement(TAG, SpzCustomSmartSearchLocation);
Log in
Create an account
0
New Arrival
Large Sizes - New Arrival
Joy Sunday - New Arrival
🔥Hot
Bundle Sale
Bundle Sale-Cross Stitch
Bundle Sale-Accessories
Low to $2.99
All For $2.99
Low Than $4.99
All For $4.99
All For $5.99
All For $6.99
All For $7.99 - $8.99
All For $9.99 - $11.99
All For $12.99 - $14.99
Cross Stitch Categories
Hot Collection
Seasons & Month
Fairy Scenery
Harry Potter
Disney
Pokemon
Sailor Moon
Halloween
Christmas
Glass Art
Girl & Lady
Anime
Owl
Cat
Religion
Silhouette
Goblin & Gnome
Town
Retro Style
White Bear
Colorful House
More Collection
Flower
Landscape
Animal
Character
Cartoon
Film
Still Life
New style
More
CT Specification
9 CT
11 CT
14 CT
16 CT
18 CT
Suitable For Beginners
Customer Satisfied Products✨
Brand Collection
Fairy Brand🔥
Xiaobai Brand🔥
KS Brand🔥
Qian Hong Xiu
Joy Sunday
Spring Brand
Mona Lisa Brand
Huacan Brand
Yishu Brand
DIY Brand
Stamed /Counted Cross Stitch
Stamped Cross Stitch
Counted Cross Stitch
Large Sizes & Small Sizes
Large Sizes Cross Stitch
Small Sizes Cross Stitch
Accessories
Frame Hoop
Thread And Thread Holder
Finger Protection
Needle And Needle Threader
Scissors
Sewing Tool & Crochet
Sewing Tool & Knitting Tools -Wool
Sewing Tool & Knitting Tools -Bag
Crafts
Bookmark
Shopper Bag
Pillow
Keychain
Sock
Coaster
Greeting Card
Carpet
Embroidery🔥
🔥Bead embroidery🔥
🔥Spring Brand Cross Stitch
🔥Joy Sunday
Joy Sunday - New Arrival
Joy Sunday - Seasons & Month
Joy Sunday - Landscape
Joy Sunday - Large Sizes
Joy Sunday - Christmas
➯Silk Cross Stitch★
Large Sizes & Small Sizes
Large Sizes
Large Sizes - Disney
Larger Sizes - Girl
Larger Sizes - Landscape
Larger Sizes - Animal
Large Sizes - Joy Sunday
Small Sizes
New Style
New Style- Girl
New Style - Anime Girl
New Style- Cartoon
New Style-Animal
Tips Of Cross Stitch★
✨Finished Cross Stitch Display
How To Embroider?
What is 9CT,11CT, 14CT, 16CT And 18CT ?
The difference between printed/stamped cross stitch and counted cross stitch
How to wash printed/stamped cross stitch?
✨Tips For Beginners
More Promotions
FAQs
More links
New Arrival
New Arrival
Large Sizes - New Arrival
Joy Sunday - New Arrival
🔥Hot
Bundle Sale
Bundle Sale
Bundle Sale-Cross Stitch
Bundle Sale-Accessories
Low to $2.99
Low to $2.99
All For $2.99
Low Than $4.99
All For $4.99
All For $5.99
All For $6.99
All For $7.99 - $8.99
All For $9.99 - $11.99
All For $12.99 - $14.99
Cross Stitch Categories
Cross Stitch Categories
Hot Collection
Hot Collection
Seasons & Month
Fairy Scenery
Harry Potter
Disney
Pokemon
Sailor Moon
Halloween
Christmas
Glass Art
Girl & Lady
Anime
Owl
Cat
Religion
Silhouette
Goblin & Gnome
Town
Retro Style
White Bear
Colorful House
More Collection
More Collection
Flower
Landscape
Animal
Character
Cartoon
Film
Still Life
New style
More
CT Specification
CT Specification
9 CT
11 CT
14 CT
16 CT
18 CT
Suitable For Beginners
Customer Satisfied Products✨
Brand Collection
Brand Collection
Fairy Brand🔥
Xiaobai Brand🔥
KS Brand🔥
Qian Hong Xiu
Joy Sunday
Spring Brand
Mona Lisa Brand
Huacan Brand
Yishu Brand
DIY Brand
Stamed /Counted Cross Stitch
Stamed /Counted Cross Stitch
Stamped Cross Stitch
Counted Cross Stitch
Large Sizes & Small Sizes
Large Sizes & Small Sizes
Large Sizes Cross Stitch
Small Sizes Cross Stitch
Accessories
Accessories
Frame Hoop
Thread And Thread Holder
Finger Protection
Needle And Needle Threader
Scissors
Sewing Tool & Crochet
Sewing Tool & Knitting Tools -Wool
Sewing Tool & Knitting Tools -Bag
Crafts
Crafts
Bookmark
Shopper Bag
Pillow
Keychain
Sock
Coaster
Greeting Card
Carpet
Embroidery🔥
🔥Bead embroidery🔥
🔥Spring Brand Cross Stitch
🔥Joy Sunday
🔥Joy Sunday
Joy Sunday - New Arrival
Joy Sunday - Seasons & Month
Joy Sunday - Landscape
Joy Sunday - Large Sizes
Joy Sunday - Christmas
➯Silk Cross Stitch★
Large Sizes & Small Sizes
Large Sizes & Small Sizes
Large Sizes
Large Sizes
Large Sizes - Disney
Larger Sizes - Girl
Larger Sizes - Landscape
Larger Sizes - Animal
Large Sizes - Joy Sunday
Small Sizes
New Style
New Style
New Style- Girl
New Style - Anime Girl
New Style- Cartoon
New Style-Animal
Tips Of Cross Stitch★
Tips Of Cross Stitch★
✨Finished Cross Stitch Display
How To Embroider?
What is 9CT,11CT, 14CT, 16CT And 18CT ?
The difference between printed/stamped cross stitch and counted cross stitch
How to wash printed/stamped cross stitch?
✨Tips For Beginners
More Promotions
FAQs
Log in
${item}
Recently searched
${item}
Hot searches
${item.word}
Results
${item.highlightHtml}
const TAG = 'spz-custom-smart-search-location'; const SMART_PRODUCR_SEARCH_WRAP_CLASSNAME = 'app-smart-product-search-wrap'; const THEME_NAME = window.SHOPLAZZA.theme.merchant_theme_name; const BREAKPOINT = 960; const DELAY = 300; class SpzCustomSmartSearchLocation extends SPZ.BaseElement { constructor(element) { super(element); this.mobileHeaderPluginParentEle = null; } static deferredMount() { return false; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.init(); this.listenerResize(); } init() { // 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(); } } 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-wrap`; } if (pre.includes(ancestor)) { return pre; } return `${pre},${ancestor} .app-smart-product-search-wrap`; }, ''); } combineMultipleSelectors(selectorList) { return selectorList.reduce((pre, selector) => { if (pre === '') { return `${selector}`; } if (pre.includes(selector)) { return pre; } return `${pre},${selector}`; }, ''); } } SPZ.defineElement(TAG, SpzCustomSmartSearchLocation);
Top searched
Month 11CT Stamped / Counted Cross Stitch 36*36CM
$5.69
+9
Joy Sunday Month 14CT Stamped Cross Stitch
from
$3.99
+7
Joy Sunday Season Angel 14CT Stamped Cross Stitch 36*52CM(14.17*20.47in)
$7.99
+2
Custom Unique Cross Stitch - 11 CT Stamped Cross Stitch (👇Upload Photo - Proper Size - Payment & Delivery)
from
$11.99
Joy Sunday Season Kids 14CT Stamped Cross Stitch 27*27CM(10.63*10.63in)
from
$3.99
+2
Spring Brand - Landscape Rainbow Town 11CT/14CT Stamped Cross Stitch 101*75CM (90Colors)
from
$31.99
2025 New Products Hot Sale
View more
View more
$18.99
【Fairy Brand】Food Series 14CT Stamped Cross Stitch 50*50CM
$18.99
$17.99
Spring Brand - Fence Girl 11CT/14CT/16CT Stamped Cross Stitch 75*75CM (90Colors)
from
$17.99
$80.99
Spring Brand - Chinese Acient Girls 11CT/14CT Stamped Cross Stitch 241*97CM(86Colors+ 8 colors of bead )
from
$80.99
$71.99
【Mona Lisa Brand】Chinese Town Landscape 11CT Stamped Cross Stitch 360*74CM
$71.99
$20.99
Spring Brand - Landscape 11CT/14CT/16CT Stamped Cross Stitch 75*75CM(84Colors)
from
$20.99
$8.99
Spring Brand - Moonlight Mermaid 11CT Stamped Cross Stitch 45*55CM(10Colors)
$8.99
$11.99
Spring Brand - Forest Train Landscape 11CT/14CT Stamped Cross Stitch 66*55CM
from
$11.99
$33.99
Spring Brand - Girl 11CT/14CT/16CT Stamped Cross Stitch 90*100CM (65Colors)
from
$33.99
$12.99
Spring Brand - Dwarf Holding a Star 11CT/14CT/16CT Stamped Cross Stitch 49*49CM(78Colors)
from
$12.99
$4.99
Spring Brand - Acrylic Cross Stitch Needle Minder European Town Embroidery Sewing Needle Holder 20*4CM(7.87*1.57 inch)
$4.99
$2.59
Spring Brand - 20PCS Sewing Needles 24/26 Large Eye Cross Stitch Needles with 2 Needle Threader
from
$2.59
$26.99
Joy Sunday Landscape 11CT/14CT Stamped Cross Stitch 131*66CM(51.57*25.98 in)
from
$26.99
New Arrivals
VIEW ALL
【Huacan Brand】Girl With Umbrella 11CT Stamped Cross Stitch 45*55CM
$13.99
【Mona Lisa Brand】Butterfly 11CT Stamped Cross Stitch 50*50CM
$11.99
【Huacan Brand】Woman And Wolf 11CT Stamped Cross Stitch 45*55CM
$13.99
【Huacan Brand】Girl With Flower Skirt 11CT Stamped Cross Stitch 40*70CM
$15.99
【Huacan Brand】Lion 11CT Stamped Cross Stitch 50*50CM
$13.99
【Mona Lisa Brand】Flower Rabbit A 11CT Stamped Cross Stitch 50*50CM
$13.99
【Mona Lisa Brand】Dielianhua 11CT Stamped Cross Stitch 50*50CM
$11.99
【Huacan Brand】Anime Girl 11CT Stamped Cross Stitch 45*60CM
$14.99
【Huacan Brand】Anime Girl Under The Moon 11CT Stamped Cross Stitch 45*60CM
$14.99
【Huacan Brand】Girl'S Back 11CT Stamped Cross Stitch 40*70CM
$15.99
【Huacan Brand】Lotus Fairy 11CT Stamped Cross Stitch 50*50CM
$13.99
【Mona Lisa Brand】Flowers 11CT Stamped Cross Stitch 50*50CM
$11.99
【Huacan Brand】Indian 11CT Stamped Cross Stitch 45*45CM
$11.99
【Mona Lisa Brand】Peony Butterfly 11CT Stamped Cross Stitch 50*50CM
$11.99
【Huacan Brand】Girl Walking Up The Stairs 11CT Stamped Cross Stitch 40*60CM
$13.99
【Huacan Brand】Spring Leaf Silhouette 11CT Stamped Cross Stitch 40*70CM
$15.99
CT Collection
9 CT Cross Stitch
11 CT Cross Stitch
14 CT Cross Stitch
16 CT Cross Stitch
18 CT Cross Stitch
Low Than $4.99
All For $4.99
All For $5.99
All For $6.99
Hot Series
Spring Brand
Halloween
Silk Cross Stitch
Bead Embroidery Cross Stich
The best sales
VIEW ALL
SOLD OUT
Blind Box Random Cross Stitch (Buy 2 Get 1 Free, Add 3 To Your Cart!)
$5.99
Month 11CT Stamped / Counted Cross Stitch 36*36CM
$5.69
+9
Joy Sunday Month 14CT Stamped Cross Stitch
from
$3.99
+7
Joy Sunday Season Angel 14CT Stamped Cross Stitch 36*52CM(14.17*20.47in)
$7.99
+2
Custom Unique Cross Stitch - 11 CT Stamped Cross Stitch (👇Upload Photo - Proper Size - Payment & Delivery)
from
$11.99
Joy Sunday Season Kids 14CT Stamped Cross Stitch 27*27CM(10.63*10.63in)
from
$3.99
+2
Spring Brand - Landscape Rainbow Town 11CT/14CT Stamped Cross Stitch 101*75CM (90Colors)
from
$31.99
【Huacan Brand】Colorful Houses On The Shore 14CT Stamped/Counted Cross Stitch 50*50CM
from
$12.99
Cat Lady Girl 11CT/14CT Stamped Cross Stitch 46*56CM/45*60CM
from
$10.99
Joy Sunday Four Seasons 11CT/14CT Stamped Cross Stitch 57*40CM
from
$7.99
New Style
VIEW ALL
Halloween Christmas Disney Pokémon 11CT Stamped Cross Stitch 80*35CM
$14.99
+5
Dark Girl 11CT Stamped Cross Stitch 30*90CM
$12.99
+7
Moon Night Girl 11CT/14CT Stamped Cross Stitch 40*70CM
from
$13.99
Anime Sailor Moon And Snake 11CT/14CT Stamped Cross Stitch 40*70CM
from
$13.99
+5
Fantasy Girl 11CT/14CT Stamped Cross Stitch 40*70CM
from
$13.99
Fantasy Flower Girl 11CT/14CT Stamped Cross Stitch 40*60CM
from
$12.99
Flower 11CT/14CT Stamped Cross Stitch 40*80CM
from
$14.99
Fantasy Pink Hair Girl 11CT/14CT Stamped Cross Stitch 40*70CM
from
$13.99
Fantasy Blue Undersea Girl 11CT/14CT Stamped Cross Stitch 40*70CM
from
$13.99
Sunflower Girl 11CT/14CT Stamped Cross Stitch 40*70CM
from
$13.99
Cross Stitch Accessory
VIEW ALL
12/24/30Pcs Acrylic DIY Cross Stitch Thread Organizer Transparent for Art Crafts
from
$6.99
Spring Brand - Acrylic Cross Stitch Needle Minder European Town Embroidery Sewing Needle Holder 20*4CM(7.87*1.57 inch)
$4.99
Spring Brand - Acrylic Cross Stitch Needle Minder Dwarf Needle Keepers 6*6CM (2.36*2.36inch)
$3.19
+9
Magnetic Needle Holder Sewing Pin Organizer for DIY Sewing Crafts (Scissors)
$1.99
Cross Stitch Needle Minder Aesthetic Alloy Needle Keepers Needlework Accessories
$2.99
+1
Cross Stitch Canvas Storage Bag 3D Portfolio Large Capacity for Cross Stitch
from
$3.99
+1
5 PCS Waterproof Mesh Zipper Bag Cross Stitch PVC Mesh Zip File Bag Puzzle Bags
from
$5.79
+2
Adjustable Needle Work Chart Holder Desktop Document Book Stand Holder W/ Ruler
from
$17.99
Square Embroidery Frame Hoop Plastic Cross Stitch Hoop DIY Craft Sewing
from
$2.99
+3
Spring Brand - 20PCS Sewing Needles 24/26 Large Eye Cross Stitch Needles with 2 Needle Threader
from
$2.59
+3
Larger Sizes
VIEW ALL
【Mona Lisa Brand】Chinese Town Landscape 11CT Stamped Cross Stitch 360*74CM
$71.99
Books 11CT Stamped Cross Stitch 30*80CM
$10.99
+6
Joy Sunday Night 11CT/14CT Stamped Cross Stitch 34*62CM
from
$10.99
Spring Brand - Landscape Rainbow Town 11CT/14CT Stamped Cross Stitch 101*75CM (90Colors)
from
$31.99
Spring Brand - Little White Bear Fairy Tale Town 11CT/16CT Stamped Cross Stitch 165*85CM(73Colors)
from
$48.99
Joy Sunday Landscape 11CT/14CT Stamped Cross Stitch 131*66CM(51.57*25.98 in)
from
$26.99
Spring Brand - A Field Of Flowers 11CT/14CT Stamped Cross Stitch 126*97CM(49.6*38.2in)
from
$45.79
Spring Brand - Season Landscape 11CT Stamped Cross Stitch 85*60CM
from
$21.99
【Yishu Brand】Disney Family 11CT Stamped Cross Stitch 100*70CM
$26.99
Joy Sunday Landscape European Town 11CT/14CT Stamped Cross Stitch 222*45CM(87.4*17.7in)
from
$26.99
Bookmark
Pillow
Shopper Bag
Keychain
Embroidery🔥
$4.99
【Yishu Brand】Bookmark - Cartoon Cat 11CT Stamped Cross Stitch 18*6CM
$4.99
$4.99
【Yishu Brand】Bookmark - Bird On Branch 11CT Stamped Cross Stitch 18*6CM
$4.99
$4.99
【Yishu Brand】Bookmark - Flowers 11CT Stamped Cross Stitch 18*6CM
$4.99
$4.99
【Yishu Brand】Bookmark - Scenery 11CT Stamped Cross Stitch 18*6CM
from
$4.99
$4.99
【Yishu Brand】Bookmark - Plant Mushroom 11CT Stamped Cross Stitch 18*6CM
from
$4.99
$4.99
Bookmark - Plastic Clothing 14CT 18*6CM Double Sided Counted Cross Stitch Bookmark
$4.99
$4.99
【Yishu Brand】Bookmark - Bookshelf 11CT Stamped Cross Stitch 18*6CM
$4.99
$4.99
【Yishu Brand】Bookmark - Silhouette-Disney Ariel 11CT Stamped Cross Stitch 18*6CM
$4.99
$4.99
【Yishu Brand】Bookmark - Silhouette-Disney Anna 11CT Stamped Cross Stitch 18*6CM
$4.99
$4.99
【Yishu Brand】Bookmark - Silhouette-Disney Rapunzel 11CT Stamped Cross Stitch 18*6CM
$4.99
$4.99
【Yishu Brand】Bookmark - Cartoon Cat 11CT Stamped Cross Stitch 18*6CM
$4.99
$4.99
【Yishu Brand】Bookmark - Bird On Branch 11CT Stamped Cross Stitch 18*6CM
$4.99
View more
$5.99
Pillow - Cotton 14CT 2 Strand Cartoon Cross Stitch Throw Pillowcase 24*24cm for Beginners(Please note that pillowcase and pillow core are sold separately.)
from
$5.99
$13.99
Pillow - Books 11CT Stamped Cross Stitch 45*45CM
$13.99
$23.99
Pillow - Bird Embroidery Latch Hook 43*43CM
$23.99
$23.99
Pillow - Cartoon Dragon Embroidery Latch Hook 43*43CM
$23.99
$23.99
Pillow - Bird Embroidery Latch Hook 43*43CM
$23.99
$23.99
Pillow - Cartoon Dragon Embroidery Latch Hook 43*43CM
$23.99
$23.99
Pillow - Bird Embroidery Latch Hook 43*43CM
$23.99
$23.99
Pillow - Cartoon Dragon Embroidery Latch Hook 43*43CM
$23.99
$23.99
Pillow - Bird Embroidery Latch Hook 43*43CM
$23.99
$23.99
Pillow - Owl Embroidery Latch Hook 43*43CM
$23.99
$5.99
Pillow - Cotton 14CT 2 Strand Cartoon Cross Stitch Throw Pillowcase 24*24cm for Beginners(Please note that pillowcase and pillow core are sold separately.)
from
$5.99
$13.99
Pillow - Books 11CT Stamped Cross Stitch 45*45CM
$13.99
View more
$14.99
【Yishu Brand】Shopper Bag - Flower 11CT Stamped Cross Stitch 40*40CM
$14.99
$14.99
【Yishu Brand】Shopper Bag - Rose Butterfly 11CT Stamped Cross Stitch 40*40CM
$14.99
$14.99
Shopper Bag- Stitch 11CT Stamped Cross Stitch 40*40CM
$14.99
$16.99
【Yishu Brand】Shopper Bag - Bow Christmas Tree 11CT Stamped Cross Stitch 40*40CM
$16.99
$16.99
【Yishu Brand】Shopper Bag - Cute Christmas Snowman 11CT Stamped Cross Stitch 40*40CM
$16.99
$16.99
【Yishu Brand】Shopper Bag - Two Christmas Snowmen 11CT Stamped Cross Stitch 40*40CM
$16.99
$16.99
【Yishu Brand】Shopper Bag - Sunflower And Highland Cattle 11CT Stamped Cross Stitch 40*40CM
$16.99
$16.99
【Yishu Brand】Shopper Bag - Christmas Snowman 11CT Stamped Cross Stitch 40*40CM
$16.99
$16.99
【Yishu Brand】Shopper Bag - Woman And Flower 11CT Stamped Cross Stitch 40*40CM
$16.99
$16.99
【Yishu Brand】Shopper Bag - Christmas Snowman And Bird 11CT Stamped Cross Stitch 40*40CM
$16.99
$14.99
【Yishu Brand】Shopper Bag - Flower 11CT Stamped Cross Stitch 40*40CM
$14.99
$14.99
【Yishu Brand】Shopper Bag - Rose Butterfly 11CT Stamped Cross Stitch 40*40CM
$14.99
View more
$2.99
Full Bead Embroidery Keychain Strawberry Bunny Printed Keyring Cross Stitch Kits
$2.99
$2.99
DIY Full Bead Embroidery Keychain Precisely Printed Keyring Cross Stitch Kits
$2.99
$2.99
DIY Full Beads Football Printed Cross Stitch Embroidery Keychains Pendants
$2.99
$3.99
Save 25%
$2.99
DIY Full Beads Cat Shape Printed Embroidery Keychains Cross Stitch Pendant
$2.99
$3.99
Save 25%
$6.99
DIY Knitting Doll Art Accessory Dinosaur Knitting Keychain for Beginners Starter
$6.99
$1.99
Hedgehog Shape Handcraft Needles Holder Cute with Keychain for DIY Jewelry Decor
from
$1.99
$2.99
Bead Embroidery Keychain - Dog 9*6.5CM
$2.99
$2.99
Bead Embroidery Keychain - Giraffe 6*7.7CM
$2.99
$3.99
Bead Embroidery Keychain - Umbrella 6.5*7.5CM
$3.99
$3.99
Bead Embroidery Keychain - Magic Hat 6.5*7.5CM
$3.99
$2.99
Full Bead Embroidery Keychain Strawberry Bunny Printed Keyring Cross Stitch Kits
$2.99
$2.99
DIY Full Bead Embroidery Keychain Precisely Printed Keyring Cross Stitch Kits
$2.99
View more
$6.99
Flower Hummingbird Stamped Cross Stitch Embroidery 30*30CM
$6.99
$7.99
Blue Bird Stamped Cross Stitch Embroidery 30*30CM
$7.99
$7.99
Flowers In The Forest Stamped Cross Stitch Embroidery 30*30CM
$7.99
$7.99
Sloth Stamped Cross Stitch Embroidery 30*30CM
$7.99
$7.99
Fox Stamped Cross Stitch Embroidery 30*30CM
$7.99
$7.99
Sunset By The Sea Stamped Cross Stitch Embroidery 30*30CM
$7.99
$7.99
Path By The River Stamped Cross Stitch Embroidery 30*30CM
$7.99
$7.99
Wooden House Under The Mountains Stamped Cross Stitch Embroidery 30*30CM
$7.99
$7.99
Ocean Waves Stamped Cross Stitch Embroidery 30*30CM
$7.99
$6.99
Flower Basket Stamped Cross Stitch Embroidery 30*30CM
$6.99
$6.99
Flower Hummingbird Stamped Cross Stitch Embroidery 30*30CM
$6.99
$7.99
Blue Bird Stamped Cross Stitch Embroidery 30*30CM
$7.99
View more
Suitable For beginners
VIEW ALL
Spring Brand - Food Coffee 11CT/14CT Stamped Cross Stitch 33*33CM(12.99*12.99In)
from
$5.99
+9
【Yishu Brand】Bookmark - Crow And Candle 11CT Stamped Cross Stitch 18*6CM
$4.99
【Yishu Brand】Bookmark - Scenery 11CT Stamped Cross Stitch 18*6CM
from
$4.99
+2
Joy Sunday Seasons 11CT/14CT/16CT Stamped/ Counted Cross Stitch 26*26CM
from
$3.99
+2
Spring Brand - Sunny Egg Fruit Toast 11CT Stamped Cross Stitch 30*30CM(11.81*11.81in)
from
$4.99
+2
Joy Sunday Romantic Bicycle Season 14CT Stamped Cross Stitch 27*21CM
from
$3.99
+1
JOY SUNDAY
Customer Reviews
Newest
Newest
Most liked
Highest ratings
Lowest ratings
Newest
Most liked
Highest ratings
Lowest ratings
Show more
Wow you reached the bottom
Sign up and save
Entice customers to sign up for your mailing list with discounts or exclusive offers. Include an image for extra impact.
SUBSCRIBE
Thanks for subscribing
No Thanks
0