🎅Christmas Month Discount, Code is XMAS10🎅Free Shipping Over $45

1 / 16
1 / 16

Stamped Beads Cross Stitch Keychain - Cartoon Wolf

$8.50
$0.00 0% Off
Sku: 487502.03
Stamped DIY Cute Animal Handmade Craft Bead Cross Stitch Keychain Printed Embroidery Needlework Key Ring Kit for Gift Backpack Pendant
Feature:
1. A guide graphic composed of different numbers and symbols, tells you where to draw the grid and which color beads should be used. All you have to do is follow the symbols on the paper. Learn how to get started.
2. The used beads are colorful and durable, making your bead embroidery vivid and lasting.
3. The beaded cross-stitched artwork will bring you a pleasant time and a sense of accomplishment when completing. It can be used as a decoration, or as a unique, meaningful and irreplaceable gift for your loved ones.
4. DIY painting, ingenious, painting and resin sequins, the resin sequins dazzling, unique luster, shining light, is the most popular DIY jewelry at present.

Specification:
Item: Bead Embroidery Keychain
Material: Keychain + beads
Size: 80x50cm/3.15x1.97in
Bead type: Full bead
Category: Pendant
Suitable for the crowd: General
Occasion: Suitable for gifts, party supplies, wedding/travel/street accessories
Type: C Wolf

Instruction:
1. Take out the materials and prepare, check the embroidered cloth, choose the color according to your personal preference, start embroidering from less to more or from more to less.
(Each grid wears 1 bead, bead embroidery only needs half a needle, and keep the direction of the bead consistent -All to the left/or right)
After embroidering the pattern, leave 1-2 more squares on the edge to cut off the excess part, and then stitch 2 pieces along the bead edge with 1 strand of fishing thread, one grid and one stitch;
2. Stuff the doll cotton into it (according to your own feeling);
3. Fix the key ring when it is sewn to the center or where you like (for the method, please refer to the QR code below);
4. Finally sew it, so that the beautiful work is completed, it is a good choice to HANG it in the car, the room or give it to a friend.

Bead embroidery method:
This bead embroidery is a small grid of 2 strands, half embroidery needle, each grid directly wears a bead, the thread goes up from the upper left corner, string the beads, and goes down from the lower right corner, and then wear the second bead in the same part according to the above method.
(Note: The tilt direction of all beads must be the same.)

Note:
Suture the fishing line with 1 strand of bead threading and 1 strand in half for embroidery.
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-3mm measuring deviation due to manual measurement.
1 X Filling Cotton
1 X Printed Embroidered Cloth
1set X High-quality Embroidered Thread
1set X Embroidered Needle
1set X Enough Beads
1 X Key Ring
1 X Drawing

We have put a lot of focus on making sure the items get delivered to our customers as quickly as possible. You will receive your order in 7-25 business days from the date that it is placed.

Verification

A confirmation email will be sent to you once the order is authorized and verified. We begin preparing your order immediately after it is verified. With this sort of time frame, it makes it difficult for us to change or cancel your order, however, we will do our best to support your request.

Processing

It normally takes 3-5 business days for us to process your order(If all items are available). Please note that this does not include holidays and weekends.

Shipping

EAT(estimated arrival time) 7-25 working days

Note: 

Shipping time is estimated and commences from the date of shipping, rather than the date of order, and can take longer than the expected date due to an invalid address, customs clearance procedures, or other causes.

Please submit a ticket within 6 months of shipment if the package does not arrive in time, our representative will get back to you within 24 hours. Note that overdue requests may not be accepted.

* Pls make sure your address info is right, and if you didn't receive our product at your wrong address, we would only refund you half, or you need to pay a shipping fee from us to get the package again.

const TAG = 'spz-custom-painter-button-animation'; const MAX_ITERATION_COUNT = 99999999; const SITE = (window.C_SETTINGS && window.C_SETTINGS.routes && window.C_SETTINGS.routes.root) || ''; const ADD_TO_CART_ANIMATION_SETTING = `${SITE}/api/marketing_atmosphere_app/add_to_cart_btn_animation/setting`; class SpzCustomPainterButtonAnimation extends SPZ.BaseElement { /**@override */ static deferredMount() { return false; } /** @param {!SpzElement} element */ constructor(element) { super(element); /** @private {!../../src/service/xhr-impl.Xhr} */ this.xhr_ = SPZServices.xhrFor(this.win); /** @private {Object} */ this.data_ = null; /** @private {Element} */ this.addToCartButton_ = null; /** @private {boolean} */ this.productAvailable_ = true; /** @private {number} */ this.timerId_ = null; /** @private {number} */ this.animationExecutionCount_ = 0; /** @private {boolean} */ this.selectedVariantAvailable_ = true; /** @private {number} */ this.delay_ = 5000; /** @private {number} */ this.iterationCount_ = 5; /** @private {string} */ this.animationClass_ = ''; } /** @override */ isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } /** @override */ buildCallback() { this.productAvailable_ = this.element.hasAttribute('product-available'); this.selectedVariantAvailable_ = this.element.hasAttribute('selected-variant-available'); } /** @override */ mountCallback() { this.render_(); } /** @private */ render_() { if (!this.productAvailable_) { return; } this.fetch_().then((data) => { if (!data) { return; } this.data_ = data; this.animationClass_ = `painter-${data.animation_name}-animation`; this.iterationCount_ = data.animation_iteration_count === 'infinite' ? MAX_ITERATION_COUNT : data.animation_iteration_count; const animationDuration = 1; const animationDelay = data.animation_delay || 5; this.delay_ = (animationDuration + animationDelay) * 1000; this.handleButtonEffect_(); }); } /** * @param {JsonObject} data * @return {(null|Object)} * @private */ parseJson_(data) { try { return JSON.parse(data); } catch (e) { return null; } } /** * @return {Promise} * @private */ fetch_() { return this.xhr_.fetchJson(ADD_TO_CART_ANIMATION_SETTING).then((data) => { if (!data || !data.enabled) { return null; } return this.parseJson_(data.detail); }); } /** @private */ getAddToCartButton_() { this.addToCartButton_ = SPZCore.Dom.scopedQuerySelector( document.body, '[data-section-type="product"] [role="addToCart"], [data-section-type="product_detail"] [role="addToCart"], [data-section-type="product_detail"] [data-click="addToCart"], [data-section-type="product"] [data-click="addToCart"]' ); } /** @private */ restartAnimation_() { this.addToCartButton_.classList.remove(this.animationClass_); this.addToCartButton_./* OK */ offsetWidth; this.addToCartButton_.classList.add(this.animationClass_); this.animationExecutionCount_++; } /** @private */ clearTimer_() { this.win.clearInterval(this.timerId_); this.timerId_ = null; } /** @private */ setupTimer_() { this.timerId_ = this.win.setInterval(() => { this.restartAnimation_(); if (this.animationExecutionCount_ >= this.iterationCount_) { this.removeAnimationClass_(); this.clearTimer_(); } }, this.delay_); } /** @private */ restartTimer_() { if (this.animationExecutionCount_ >= this.iterationCount_) { this.removeAnimationClass_(); return; } this.setupTimer_(); } /** @private */ listenVariantChange_() { SPZUtils.Event.listen(self.document, 'dj.variantChange', (e) => { const selectedVariant = e.detail && e.detail.selected; if (!selectedVariant) { return; } const {available} = selectedVariant; if (this.selectedVariantAvailable_ !== available) { this.selectedVariantAvailable_ = available; this.clearTimer_(); if (available) { this.restartTimer_(); } } }); } /** @private */ removeAnimationClass_() { this.win.setTimeout(() => { this.addToCartButton_.classList.remove(this.animationClass_); }, 1000); } /** @private */ handleButtonEffect_() { this.getAddToCartButton_(); if (!this.addToCartButton_) { return; } if (this.selectedVariantAvailable_) { ++this.animationExecutionCount_; this.addToCartButton_.classList.add(this.animationClass_); if (this.iterationCount_ === 1) { this.removeAnimationClass_(); return; } this.setupTimer_(); } this.listenVariantChange_(); } } SPZ.defineElement(TAG, SpzCustomPainterButtonAnimation);