S925K Silver Viking Style Wolf Head Cross Necklace

$79.99
Color:  Sliver
Quantity

Description

60cm stainless steel chain included

Product Details: 
Material:S925K Silver
Color:sliver,copper
Size:4*3*0.3cm 
Weight:13.09g

🧊Two - color Legend, Viking Style Showcased

Silver is like the aurora in the cold night, and copper is like the ancient runes. Both colors incorporate the mystery and power of Viking culture. The silver one is cold and noble, like the tenacity of a Viking warrior shining in the ice and snow; the copper one is simple and deep, like the heaviness of a Viking legend precipitated in time. With two - color options, you can interpret the unique Viking style and show your unruly personality.

🦁Lion's Dignity, Exquisite Craftsmanship

Carved with exquisite craftsmanship, the lion's head is like every mane dancing in the Viking wind, and every line condenses the craftsman's painstaking effort. The dignity of the lion is integrated with the solemnity of the cross, and the details show the Viking culture's advocating of strength and protection. While wearing it, feel the collision of history and art.

⚔️Viking Soul, Power Inheritance

The Vikings prized courage and conquest, and this necklace embodies that spirit. The lion symbolizes the fearlessness of the Viking warrior and the cross signifies the guidance of faith. Wearing it is like taking on the strength of your Viking ancestors. On the journey of life, no matter how windy or rainy it is, you can draw courage and resilience from within, and let the Viking soul inspire you to move forward.

🏹Hold this Necklace, Brave the Journey

It is not only an ornament but also a sustenance of Viking spirit. When you wear it, every appearance is a tribute to courage, and every step forward is accompanied by strength. Don't wait any longer. Hold this necklace and brave your own journey—let the blood of Viking culture flow in your neck and write your own legend.
class SpzCustomDiscountFlashsale extends SPZ.BaseElement { constructor(element) { super(element); this.xhr_ = SPZServices.xhrFor(this.win); this.getFlashSaleApi = "\/api\/storefront\/promotion\/flashsale\/display_setting\/product_setting"; this.timer = null; this.variantId = "1cb3a1b6-de3c-4fdd-a409-10600cc432b2"; // 促销活动数据 this.flashsaleData = {} } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } buildCallback() { this.templates_ = SPZServices.templatesForDoc(); this.viewport_ = this.getViewport(); // 挂载bind函数 解决this指向问题 this.render = this.render.bind(this); this.resize = this.resize.bind(this); this.switchVariant = this.switchVariant.bind(this); } mountCallback() { // 获取数据 this.getData(); this.element.onclick = (e) => { const cur = this.win.document.querySelector(".app_discount_flashsale_desc"); if (this.flashsaleData.product_setting.is_redirection && appDiscountUtils.inProductBody(this.element) && e.target !== cur) { this.win.open(`/promotions/discount-default/${this.flashsaleData.discount_info.id}`); } } // 绑定 this.viewport_.onResize(this.resize); // 监听子款式切换,重新渲染 this.win.document.addEventListener('dj.variantChange', this.switchVariant); } unmountCallback() { // 解绑 this.viewport_.removeResize(this.resize); this.win.document.removeEventListener('dj.variantChange', this.switchVariant); // 清除定时器 if (this.timer) { clearTimeout(this.timer); this.timer = null; } } resize() { if (this.timer) { clearTimeout(this.timer) this.timer = null; } this.timer = setTimeout(() => { this.render(); }, 200) } switchVariant(event) { const variant = event.detail.selected; if (variant.product_id == 'e811dba0-a213-42ea-9b67-14df87610d99' && variant.id != this.variantId) { this.variantId = variant.id; this.getData(); } } getData() { const reqBody = { product_id: "e811dba0-a213-42ea-9b67-14df87610d99", product_type: "default", variant_id: this.variantId } this.flashsaleData = {}; this.win.fetch(this.getFlashSaleApi, { method: "POST", body: JSON.stringify(reqBody), headers: { "Content-Type": "application/json" } }).then(async (response) => { if (response.ok) { this.flashsaleData = await response.json(); this.render(); } else { this.clearDom(); } }).catch(err => { this.clearDom(); }); } clearDom() { const children = this.element.querySelector('*:not(template)'); children && SPZCore.Dom.removeElement(children); } render() { this.templates_ .findAndRenderTemplate(this.element, { isMobile: appDiscountUtils.judgeMobile(), isRTL: appDiscountUtils.judgeRTL(), inProductDetail: appDiscountUtils.inProductBody(this.element), flashsaleData: this.flashsaleData, image_domain: this.win.SHOPLAZZA.image_domain, }) .then((el) => { this.clearDom(); this.element.appendChild(el); }) } } SPZ.defineElement('spz-custom-discount-flashsale', SpzCustomDiscountFlashsale);