🔥Hot Sale 49% Off🔥🎁Book Light, Rechargeable Clear LED Flat Book Lights for Reading in Bed at Night with 3 Colors & Timer

$34.99
$68.60
-49%
☪️Eye-Care Tools For Relaxing Before Bedtime Reading📖:  🔥pink
Specification:  Buy 1
people are viewing this right now
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Quantity

Description

❤️TIPS: All goods are authentic, with genuine patents, counterfeit must be investigated! Customers, please identify our products!!

  • >>SHIPPING WORLDWIDE.
  • 💯>>Payments Via PayPal® and CreditCard.
  • >>Fast refund Guarantee--You may return or exchange your item within 15 days of receipt.

About this item

  • Upgraded 2-in-1 Book Light: Our new reading light features HD transparent PC lenses treated to be super smooth and durable. When lit, the whole panel lights up evenly, so your reading spot is well lit without any annoying stray light. It's perfect as a book light for those late night reads, a soothing kids' night light, a cozy bedroom light, or a handy bedside light

  • 3 Light Colors Reading Light: White, Warm, and Neutral. The clear panel plate design makes it flicker free, reducing eyestrain for long term use. Warm white sets a cozy, relaxing mood, ideal as a book light for reading in bed. Cold white boosts visibility, great for reading in bed. Natural light helps you focus on work or study

  • Book Light Rechargeable: Our book lights for reading at night comes with a built-in 1200 mAh large-capacity rechargeable battery, use the included USB charging cable to charge it, that you can easily move and carry it around, for reading anywhere. After a 3 hours charge, it offers an impressive 5 - 35 hours of lighting time: High brightness for 7.5 hours, medium brightness lasts 16 hours, low brightness extends up to 35 hours

  • Dimmable & Timer: Flat book light features a stepless dimming function, you can effortlessly adjust the brightness to suit any lighting situation. And it with a timer countdown LED digital screen, you can set your reading time from 1 - 99 minutes. Once the set time is up, this in bed reading light automatically turns off. It's an ideal feature for those who often lose track of time while reading, preventing late night reading from disturbing your sleep

  • Awesome Gifts: This full page book light innovative design and portability make it not just a reading essential but also a cool book accessory and a great desk companion. The LED book lamp is a perfect gift for men, women, teens, boys, girls, readers or book lovers. Ideal for Christmas, Thanksgiving, Halloween, Children's Day, birthdays, and other special occasions

😊WHY THE US
We work directly with manufacturers all over the world to ensure the best quality of our products. We have Quality Control department which helps us to keep our promise!
  • 😊Price is always competitive.
  • 🚢Awesome Customer Service.
  • 🏆Amazing products along with High Quality.
  • 🍬Read reviews from our lovely customers.
🔒 100% Risk-Free Purchase 🔥
 

OUR GUARANTEE:

    • We believe we have some of the most innovative products in the world, and we want to make sure we back that up with a risk-free 15-day guarantee.
    • If for any reason you do not have a positive experience, we will make every effort to ensure that you are satisfied with your purchase.
    • We want you to rest assured that there is absolutely zero risk in buying and trying out products. If you don't like it and don't feel bad, we'll do it right.
    • We email support. If you need help, please contact us.
const TAG = "spz-custom-product-automatic"; class SpzCustomProductAutomatic extends SPZ.BaseElement { constructor(element) { super(element); this.variant_id = '7e7f9b7e-0300-42f6-805d-64884f5f28d3'; this.isRTL = SPZ.win.document.dir === 'rtl'; } static deferredMount() { return false; } buildCallback() { this.action_ = SPZServices.actionServiceForDoc(this.element); this.templates_ = SPZServices.templatesForDoc(this.element); this.xhr_ = SPZServices.xhrFor(this.win); this.setupAction_(); this.viewport_ = this.getViewport(); } mountCallback() { this.init(); // 监听事件 this.bindEvent_(); } async init() { this.handleFitTheme(); const data = await this.getDiscountList(); this.renderApiData_(data); } async getDiscountList() { const productId = 'e912750e-1d80-4cc4-90e7-250e239af0a8'; const variantId = this.variant_id; const productType = 'default'; const reqBody = { product_id: productId, variant_id: variantId, discount_method: "DM_AUTOMATIC", customer: { customer_id: window.C_SETTINGS.customer.customer_id, email: window.C_SETTINGS.customer.customer_email }, product_type: productType } const url = `/api/storefront/promotion/display_setting/text/list`; const data = await this.xhr_.fetchJson(url, { method: "post", body: reqBody }).then(res => { return res; }).catch(err => { this.setContainerDisabled(false); }) return data; } async renderDiscountList() { this.setContainerDisabled(true); const data = await this.getDiscountList(); this.setContainerDisabled(false); // 重新渲染 抖动问题处理 this.renderApiData_(data); } clearDom() { const children = this.element.querySelector('*:not(template)'); children && SPZCore.Dom.removeElement(children); } async renderApiData_(data) { const parentDiv = document.querySelector('.automatic_discount_container'); const newTplDom = await this.getRenderTemplate(data); if (parentDiv) { parentDiv.innerHTML = ''; parentDiv.appendChild(newTplDom); } else { console.log('automatic_discount_container is null'); } } doRender_(data) { const renderData = data || {}; return this.templates_ .findAndRenderTemplate(this.element, renderData) .then((el) => { this.clearDom(); this.element.appendChild(el); }); } async getRenderTemplate(data) { const renderData = data || {}; return this.templates_ .findAndRenderTemplate(this.element, { ...renderData, isRTL: this.isRTL }) .then((el) => { this.clearDom(); return el; }); } setContainerDisabled(isDisable) { const automaticDiscountEl = document.querySelector('.automatic_discount_container_outer'); if(isDisable) { automaticDiscountEl.setAttribute('disabled', ''); } else { automaticDiscountEl.removeAttribute('disabled'); } } // 绑定事件 bindEvent_() { window.addEventListener('click', (e) => { let containerNodes = document.querySelectorAll(".automatic-container .panel"); let bool; Array.from(containerNodes).forEach((node) => { if(node.contains(e.target)){ bool = true; } }) // 是否popover面板点击范围 if (bool) { return; } if(e.target.classList.contains('drowdown-icon') || e.target.parentNode.classList.contains('drowdown-icon')){ return; } const nodes = document.querySelectorAll('.automatic-container'); Array.from(nodes).forEach((node) => { node.classList.remove('open-dropdown'); }) // 兼容主题 this.toggleProductSticky(true); }) // 监听变体变化 document.addEventListener('dj.variantChange', async(event) => { // 重新渲染 const variant = event.detail.selected; if (variant.product_id == 'e912750e-1d80-4cc4-90e7-250e239af0a8' && variant.id != this.variant_id) { this.variant_id = variant.id; this.renderDiscountList(); } }); } // 兼容主题 handleFitTheme() { // top 属性影响抖动 let productInfoEl = null; if (window.SHOPLAZZA.theme.merchant_theme_name === 'Wind' || window.SHOPLAZZA.theme.merchant_theme_name === 'Flash') { productInfoEl = document.querySelector('.product-info-body .product-sticky-container'); } else if (window.SHOPLAZZA.theme.merchant_theme_name === 'Hero') { productInfoEl = document.querySelector('.product__info-wrapper .properties-content'); } if(productInfoEl){ productInfoEl.classList.add('force-top-auto'); } } // 兼容 wind/flash /hero 主题 (sticky属性影响 popover 层级展示, 会被其他元素覆盖) toggleProductSticky(isSticky) { let productInfoEl = null; if (window.SHOPLAZZA.theme.merchant_theme_name === 'Wind' || window.SHOPLAZZA.theme.merchant_theme_name === 'Flash') { productInfoEl = document.querySelector('.product-info-body .product-sticky-container'); } else if (window.SHOPLAZZA.theme.merchant_theme_name === 'Hero') { productInfoEl = document.querySelector('.product__info-wrapper .properties-content'); } if(productInfoEl){ if(isSticky) { // 还原该主题原有的sticky属性值 productInfoEl.classList.remove('force-position-static'); return; } productInfoEl.classList.toggle('force-position-static'); } } setupAction_() { this.registerAction('handleDropdown', (invocation) => { const discount_id = invocation.args.discount_id; const nodes = document.querySelectorAll('.automatic-container'); Array.from(nodes).forEach((node) => { if(node.getAttribute('id') != `automatic-${discount_id}`) { node.classList.remove('open-dropdown'); } }) const $discount_item = document.querySelector(`#automatic-${discount_id}`); $discount_item && $discount_item.classList.toggle('open-dropdown'); // 兼容主题 this.toggleProductSticky(); }); } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, `${ TAG }.${ name }`, data || {}); this.action_.trigger(this.element, name, event); } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } } SPZ.defineElement(TAG, SpzCustomProductAutomatic);