Vintage - Inspired Tire - Shaped Stainless Steel Pendant

$29.99
Quantity

Description

Product Details

This vintage - inspired tire - shaped stainless steel pendant perfectly combines unique creativity with exquisite craftsmanship. The main body of the pendant is made of stainless steel, which is sturdy, durable, rust - proof, and deformation - resistant, with an outstanding texture. It measures 16.4mm (height) × 4.7mm (width), compact and delicate, and is comfortable to wear when paired with a chain.

Inspired by the shape of a tire, the pendant undergoes a vintage - style treatment on its surface, presenting a unique worn texture and detailed patterns, as if carrying the marks of time. The tire treads and contours are vividly depicted, and the internal hollow honeycomb - like design adds more layers and a three - dimensional effect.

Unique Design

  1. Creative Shape : The tire - shaped pendant is unique, breaking away from the traditional jewelry design concept. It offers a novel choice for consumers who pursue individuality and love unique styles, demonstrating a distinctive fashion attitude. 💥
  2. Vintage Craftsmanship : The vintage - style treatment process is a highlight of this pendant. Through special techniques, it simulates the wear - and - tear effect of a used tire, endowing the pendant with a vintage charm and an industrial style, making it highly artistic and full of stories. 🎨

Styling Suggestions

  • Street - Style Trend : Paired with loose T - shirts, ripped jeans, baseball caps, and other street - style trendy items, it can instantly enhance the fashion sense and individual charm of the overall look, making you the center of attention on the street. 👕
  • Casual Workwear Style : When matched with workwear jackets, cropped work pants, and Martin boots, the tough style of the pendant complements the workwear style, showing a casual and unruly temperament. 👖
  • Personalized Mix - and - Match Style : In a mix - and - match style outfit, such as paired with a printed shirt and personalized shorts, this pendant can serve as the finishing touch, adding unique elements to the overall look and highlighting your fashion taste. 🎀
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 = "4355baeb-73ab-4203-8cc2-74a432b47f07"; // 促销活动数据 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 == 'd2131186-c982-4bae-82ed-2915674a1764' && variant.id != this.variantId) { this.variantId = variant.id; this.getData(); } } getData() { const reqBody = { product_id: "d2131186-c982-4bae-82ed-2915674a1764", 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);