Bidirectional Vertical - Cube Glass Engraving

people are viewing this right now
$62.97
$126.00
-50%
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 = "bdbb063d-0022-4d4d-ae7b-f1d14eb1729d"; // 促销活动数据 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"); const setting = this.flashsaleData.product_setting; const landingUrl = `/promotions/discount-default/${this.flashsaleData.discount_info.id}`; const finalUrl = appDiscountUtils.resolveDiscountHref(setting, landingUrl); if (finalUrl && appDiscountUtils.inProductBody(this.element) && e.target !== cur) { this.win.open(finalUrl, '_blank', 'noopener'); } } // 绑定 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 == '90ae320b-05c8-4d40-a66a-7663b59c130b' && variant.id != this.variantId) { this.variantId = variant.id; this.getData(); } } getData() { const reqBody = { product_id: "90ae320b-05c8-4d40-a66a-7663b59c130b", 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);
Style:  BLUE
❤Buy More Save More❤:  BUY 1
Quantity
/** @private {string} */ class SpzCustomAnchorScroll extends SPZ.BaseElement { static deferredMount() { return false; } constructor(element) { super(element); /** @private {Element} */ this.scrollableContainer_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.viewport_ = this.getViewport(); this.initActions_(); } setTarget(containerId, targetId) { this.containerId = '#' + containerId; this.targetId = '#' + targetId; } scrollToTarget() { const container = document.querySelector(this.containerId); const target = container.querySelector(this.targetId); const {scrollTop} = container; const eleOffsetTop = this.getOffsetTop_(target, container); this.viewport_ .interpolateScrollIntoView_( container, scrollTop, scrollTop + eleOffsetTop ); } initActions_() { this.registerAction( 'scrollToTarget', (invocation) => this.scrollToTarget(invocation?.caller) ); this.registerAction( 'setTarget', (invocation) => this.setTarget(invocation?.args?.containerId, invocation?.args?.targetId) ); } /** * @param {Element} element * @param {Element} container * @return {number} * @private */ getOffsetTop_(element, container) { if (!element./*OK*/ getClientRects().length) { return 0; } const rect = element./*OK*/ getBoundingClientRect(); if (rect.width || rect.height) { return rect.top - container./*OK*/ getBoundingClientRect().top; } return rect.top; } } SPZ.defineElement('spz-custom-anchor-scroll', SpzCustomAnchorScroll); const STRENGTHEN_TRUST_URL = "/api/strengthen_trust/settings"; class SpzCustomStrengthenTrust extends SPZ.BaseElement { constructor(element) { super(element); this.renderElement_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } buildCallback() { this.xhr_ = SPZServices.xhrFor(this.win); const renderId = this.element.getAttribute('render-id'); SPZCore.Dom.waitForChild( document.body, () => !!document.getElementById(renderId), () => { this.renderElement_ = SPZCore.Dom.scopedQuerySelector( document.body, `#${renderId}` ); if (this.renderElement_) { this.render_(); } this.registerAction('track', (invocation) => { this.track_(invocation.args); }); } ); } render_() { this.fetchData_().then((data) => { if (!data) { return; } SPZ.whenApiDefined(this.renderElement_).then((apis) => { apis?.render(data); document.querySelector('#strengthen-trust-render-1539149753700').addEventListener('click',(event)=>{ if(event.target.nodeName == 'A'){ this.track_({type: 'trust_content_click'}); } }) }); }); } track_(data = {}) { const track = window.sa && window.sa.track; if (!track) { return; } track('trust_enhancement_event', data); } parseJSON_(string) { let result = {}; try { result = JSON.parse(string); } catch (e) {} return result; } fetchData_() { return this.xhr_ .fetchJson(STRENGTHEN_TRUST_URL) .then((responseData) => { if (!responseData || !responseData.data) { return null; } const data = responseData.data; const moduleSettings = (data.module_settings || []).reduce((result, moduleSetting) => { return result.concat(Object.assign(moduleSetting, { logos: (moduleSetting.logos || []).map((item) => { return moduleSetting.logos_type == 'custom' ? this.parseJSON_(item) : item; }) })); }, []); return Object.assign(data, { module_settings: moduleSettings, isEditor: window.self !== window.top, }); }); } } SPZ.defineElement('spz-custom-strengthen-trust', SpzCustomStrengthenTrust);
BUY 2 GET 1 FREE SHIPPING
7-15 Days Delivery with Tracking
Easy 30-Days Returns
Secure Checkout & 30-Day Money Back
Shipping

Description

  • SHIPPING WORLDWIDE.Shipped within 15 days
  • ⭐Returns>> 100% Money Back Guarantee
  • 🎉More than 95% of customers recommend this product.
  • 🎁99.3% Reviewers Recommends Buy 2 Or More.
  • Since the product is limited production, the original price will be restored after the sale ends
  • ❤We Promise: If the product you receive is different from what we showed, we will refund it for free.

The Cube features a very intricate triple cut core making it a cube sculpture like nothing you’ve ever seen before. The Cube refracts, reflects and casts colored shadows.

This is a limited edition product, the artist only produced 500 pieces

Every cold glass sculpture starts from the core. Then the artist cuts, grinds, polishes and laminates the glass together hundreds of times; until he achieves the core design he desires. 

💎HANDMADE CRAFT: The Cube features a very intricate triple cut core making it a cube sculpture like nothing you’ve ever seen before. The Cube refracts, reflects and casts colored shadows. Each Angle shines beautifully in a different way.

💎HIGH QUALITY: All of our artworks are original pieces of fine art. All of our glass sculptures are designed using a cold-working lathe. There is no heat involved in the process whatsoever. The materials used on each one of glass sculptures are 32% optical lead crystal, optical crystal and dichroic glass.

💎NICE DECOR: Its dreamy colors are displayed in the sunlight, intoxicating.Every time I see it, I feel very peaceful and relaxed.

💎BEAUTIFUL GIFT IDEA: It will be a perfect gift for mom, wife, best friends, teacher, coach on Christmas, Birthday, Anniversary, Wedding, Mother's Day, Valentines Day, Teachers Day or just send as a surprise gift for that special one in your life to remind her how much you care!

As we all know, Fibonacci theory is referenced in the conception and creation process of all glass designs. Then, the core is wrapped in an optical crystal, and each piece is hand-carved to shape the shape.


Each glass sculpture takes 6 to 24 weeks to create, and all works are original works of art. All glass sculptures are designed using cold working lathes. There is no heat in this process. The materials used in each glass sculpture are 32% optical lead crystal, optical crystal and dichroic glass.

Purchasing Information:

Small Magik Chroma Cube : 2.4" x 2.4" x 2.4" three-cut cube

Limited Collection Size: 500 pieces

Our Guarantee

🟢 All orders are backed by a 30 Day Money Back Guarantee and a 12 month warranty.
🟢 If you are unsatisfied with your product for any reason, simply contact us within 30 days and we will refund you, no questions asked. If your product has damage within 12 months that is not caused from misuse, we will replace it.
🟢 If you don't have a positive experience for ANY reason at all, we will do WHATEVER it takes to make sure that you are 100% satisfied with your purchase.
🟢 Buying online can be daunting, so we want you to be sure that there are ZERO RISKS in buying a pool and trying it out. If you don't like it, there's no hard feelings, we will make it right.
🟢 We have 24/7/365 Email Support available. Please contact us if you need any assistance.

  • DELIVERY WORLDWIDE

    7-15 Days Delivery & Over $59 Get Free Shipping

  • 100% PAYMENT SECURE

    We ensure secure payment with PEV

  • CREDIT PAYMENT

    Multiple credit card payment methods

  • 30 DAYS RETURN

    Simply return it within 30 days for an exchange