LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
1 / 53
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
LED Bar Rechargeable Table Lamp
29% OFF

LED Bar Rechargeable Table Lamp

$49.99 $69.99
0 sold
Color
Lampshade
Qty 1000 in stock
/** @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);

🚚Shipping--Free worldwide express shipping available

🚚Delivery Time--15 working days worldwide

🚚Handling Time--Ship within 48 hours after payment

🚚You can pay with PayPal, American Express, MasterCard, Visa, and JCB will protect your money

🌟A slim metal-bodied cordless table lamp featuring a cylindrical diffuser gives maximum direct downlight without glare.

💡Electroplating Process Design:
Made of metal. Electroplating process, bright color. Gives a sense of a high-end atmosphere

💡Soft Lighting:
A slim metal-bodied cordless table lamp featuring an enclosed cylindrical diffuser gives maximum direct downlight without glare. Ideal for unobtrusive table lighting and for rooms with views through the glass as there are minimal reflections.

Specification:

  • Material: Metal
  • Light Time: 13 Hrs (High) To 130 Hrs (Low)
  • Charge Time: 4 Hrs
  • Light Source: LED Bulbs
  • Voltage: 12V
  • Size: D9×H22cm/D3.5×H8.7inch
  • Power Supply: USB
  • Weight: 500g/1.1lb
  • Dimmable: 3 Level
  • Color: Copper, Gold, Silver, Black, White
  • Protection Ratings: IP 52 – Dust Protected & Dripping Water When Tilted Up To 15°
  • Certification: CE, CSA, C-Tick, FCC, RoHS, SASO Approved For Middle East Export

Package Inculdes:

  • 1×LED Bar Charging Table Lamp
  • 1×USB charging cable

How To Pay:

Without PayPal?

  • You don't need a Paypal account to checkout.
  • Paypal accepts all payment credit cards. 
  • Just select "Paypal" and click the "Pay with Debit or Credit card" button.

🌎 Worldwide Shipping ✈  


Please do note that shipping is insured and takes 7-15 business days worldwide. However, you may receive your items earlier. Tracking Numbers will ALWAYS be sent so you can track them every step of the way! Cool things are worth waiting for! 😉

🔒 100% Risk-Free Purchase 🔥 


If you bought it and felt that it is not for you, don't worry. Just shoot us a message at contact helpcenterandservice@gmail.com, and we will make it right by offering you a replacement or refund. 100% Simple & Risk-Free process.

You may also like Don't Like These?