Dual Tip Acrylic Paint Pen Marker - 24/48/72/120 Colors

$19.30
Color😍Hurry!Remaining Stock 2 Digits:  24 Colors
people are viewing this right now
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Quantity

Description

 


🎨"Let every child become a little art genius with ease—non-toxic, vibrant colors, and dries instantly!"

 

PRODUCT FEATURES:

  • 🖌️Brightly Colored

Acrylic marker with strong coverage and bright colors. DlY hand-painted painting signature and other multi-purpose.

  • 🔁Double Head Design

One stroke multi-purpose, can draw different colors.

  • ⭐Strong Coverage

Brush brush, according to the strength, tilt Angle can draw different thickness lines: 1mm-5mm.

  • 🎨Smooth Writing

Light force can be traced, crossed, Heavy strength can spread color, fil.


🎨EXCELLENT PERFORMANCE ON MULTI-SURFACE :

Fabric markers feature a unique dual tip design that can be used on a wide variety of surfaces,such as rock paintings, mugs, canvases, fabrics, ceramics, ceramic tiles, glass, wood, leather, resins, tires, chalkboards,Halloween Pumpkin Kit,Christmas decorations and more.

Wide range of uses, bring more convenience to your art design.

🎨PREMIUM QUALITY PAINT PEN :

Unlike traditional acrylic paint pens, this acrylic markers set is made of the finest water-based ink, which is odorless, waterproof and non-toxic.

No need to shake or press the tip to release the ink, just open the cap and use the acrylic pens. Outstanding coverage and perfect brightness allow artists to express their whimsical ideas on different surfaces of objects in a long-lasting, smooth and shiny way.

🎨SAFETY FIRST :

Each acrylic paint pen is made from highly pigmented acrylic paint. They are alcohol-free, water-based, non-toxic and odorless.

These features make them a safe choice for adults and children to foster creativity and imagination. Additionally, paint pens paint markers provide excellent coverage on a variety of surfaces, ensuring a versatile and enjoyable art experience.

🎨Our acrylic marker set is available in 72 unique and vibrant colors, which feature mirror-reflective marking elements that bring your everyday creations to life. Bright, vibrant primary and complementary colors let your imagination run wild with possibilities.

🎨GREAT GIFT IDEA :

If you're searching for thoughtful and unique gifts for special occasions such as Thanksgiving, Easter, Halloween, Christmas, Valentine's Day, or New Year's Day, look no further than our 72-color acrylic markers paint pens sets.

Each set of paint markers is presented in a beautiful and sturdy storage box, perfect for DIY crafts and everyday decorations. If you are not satisfied with our paint markers or have any questions, please feel free to contact us at any time.

SPECIFICATION:

  • Barrel Materials:PP Plastic Tube
  • Nib Type:Dual-Tip, dual-colors
  • Product Name:Acrylic Paint Marker
  • Nib Materials:Fiber
  • Ink Colors:24 colors/48 colors/72 colors/120 colors
  • Barrel Size:148*11mm
  • Writing Line:0.5-5mm

Click ''Add to Cart'' Now - We won't Be Offering This Amazing Deal For Long!

SATISFACTION GUARANTEE

  • Processing time >>Priority is given to delivery after payment.
  • All packing processes are strictly sanitized
  • 24/7 Responsive Customer Service
  • Payment success & send e-mail for your confirmation before shipping.
  • Orders can be canceled, returned or exchanged if there are problems in quality, colors and delayed shipping

AFTER-SALE SERVICE

  • If for whatever reason you're not completely satisfied, then return the product within 30 days!
  • We ship to 127 countries, including US, CA, AU and all countries in Europe.
  • If you do not have a positive experience for any reason, we will do our best to ensure that you are 100% satisfied with the purchase.
const TAG = "spz-custom-product-automatic"; class SpzCustomProductAutomatic extends SPZ.BaseElement { constructor(element) { super(element); this.variant_id = '2f87aa93-a40e-472e-a99c-5d004f497350'; this.isRTL = SPZ.win.document.dir === 'rtl'; } static deferredMount() { return false; } buildCallback() { this.action_ = SPZServices.actionServiceForDoc(this.element); this.templates_ = SPZServices.templatesForDoc(this.element); this.xhr_ = SPZServices.xhrFor(this.win); this.setupAction_(); this.viewport_ = this.getViewport(); } mountCallback() { this.init(); // 监听事件 this.bindEvent_(); } async init() { this.handleFitTheme(); const data = await this.getDiscountList(); this.renderApiData_(data); } async getDiscountList() { const productId = 'a2ccb6ea-f355-4409-9728-f218007672db'; const variantId = this.variant_id; const productType = 'default'; const reqBody = { product_id: productId, variant_id: variantId, discount_method: "DM_AUTOMATIC", customer: { customer_id: window.C_SETTINGS.customer.customer_id, email: window.C_SETTINGS.customer.customer_email }, product_type: productType } const url = `/api/storefront/promotion/display_setting/text/list`; const data = await this.xhr_.fetchJson(url, { method: "post", body: reqBody }).then(res => { return res; }).catch(err => { this.setContainerDisabled(false); }) return data; } async renderDiscountList() { this.setContainerDisabled(true); const data = await this.getDiscountList(); this.setContainerDisabled(false); // 重新渲染 抖动问题处理 this.renderApiData_(data); } clearDom() { const children = this.element.querySelector('*:not(template)'); children && SPZCore.Dom.removeElement(children); } async renderApiData_(data) { const parentDiv = document.querySelector('.automatic_discount_container'); const newTplDom = await this.getRenderTemplate(data); if (parentDiv) { parentDiv.innerHTML = ''; parentDiv.appendChild(newTplDom); } else { console.log('automatic_discount_container is null'); } } doRender_(data) { const renderData = data || {}; return this.templates_ .findAndRenderTemplate(this.element, renderData) .then((el) => { this.clearDom(); this.element.appendChild(el); }); } async getRenderTemplate(data) { const renderData = data || {}; return this.templates_ .findAndRenderTemplate(this.element, { ...renderData, isRTL: this.isRTL }) .then((el) => { this.clearDom(); return el; }); } setContainerDisabled(isDisable) { const automaticDiscountEl = document.querySelector('.automatic_discount_container_outer'); if(isDisable) { automaticDiscountEl.setAttribute('disabled', ''); } else { automaticDiscountEl.removeAttribute('disabled'); } } // 绑定事件 bindEvent_() { window.addEventListener('click', (e) => { let containerNodes = document.querySelectorAll(".automatic-container .panel"); let bool; Array.from(containerNodes).forEach((node) => { if(node.contains(e.target)){ bool = true; } }) // 是否popover面板点击范围 if (bool) { return; } if(e.target.classList.contains('drowdown-icon') || e.target.parentNode.classList.contains('drowdown-icon')){ return; } const nodes = document.querySelectorAll('.automatic-container'); Array.from(nodes).forEach((node) => { node.classList.remove('open-dropdown'); }) // 兼容主题 this.toggleProductSticky(true); }) // 监听变体变化 document.addEventListener('dj.variantChange', async(event) => { // 重新渲染 const variant = event.detail.selected; if (variant.product_id == 'a2ccb6ea-f355-4409-9728-f218007672db' && variant.id != this.variant_id) { this.variant_id = variant.id; this.renderDiscountList(); } }); } // 兼容主题 handleFitTheme() { // top 属性影响抖动 let productInfoEl = null; if (window.SHOPLAZZA.theme.merchant_theme_name === 'Wind' || window.SHOPLAZZA.theme.merchant_theme_name === 'Flash') { productInfoEl = document.querySelector('.product-info-body .product-sticky-container'); } else if (window.SHOPLAZZA.theme.merchant_theme_name === 'Hero') { productInfoEl = document.querySelector('.product__info-wrapper .properties-content'); } if(productInfoEl){ productInfoEl.classList.add('force-top-auto'); } } // 兼容 wind/flash /hero 主题 (sticky属性影响 popover 层级展示, 会被其他元素覆盖) toggleProductSticky(isSticky) { let productInfoEl = null; if (window.SHOPLAZZA.theme.merchant_theme_name === 'Wind' || window.SHOPLAZZA.theme.merchant_theme_name === 'Flash') { productInfoEl = document.querySelector('.product-info-body .product-sticky-container'); } else if (window.SHOPLAZZA.theme.merchant_theme_name === 'Hero') { productInfoEl = document.querySelector('.product__info-wrapper .properties-content'); } if(productInfoEl){ if(isSticky) { // 还原该主题原有的sticky属性值 productInfoEl.classList.remove('force-position-static'); return; } productInfoEl.classList.toggle('force-position-static'); } } setupAction_() { this.registerAction('handleDropdown', (invocation) => { const discount_id = invocation.args.discount_id; const nodes = document.querySelectorAll('.automatic-container'); Array.from(nodes).forEach((node) => { if(node.getAttribute('id') != `automatic-${discount_id}`) { node.classList.remove('open-dropdown'); } }) const $discount_item = document.querySelector(`#automatic-${discount_id}`); $discount_item && $discount_item.classList.toggle('open-dropdown'); // 兼容主题 this.toggleProductSticky(); }); } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, `${ TAG }.${ name }`, data || {}); this.action_.trigger(this.element, name, event); } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } } SPZ.defineElement(TAG, SpzCustomProductAutomatic);