Waterproof Led Wheel Lights
Waterproof Led Wheel Lights
Waterproof Led Wheel Lights
Waterproof Led Wheel Lights
Waterproof Led Wheel Lights
Waterproof Led Wheel Lights
Waterproof Led Wheel Lights
Waterproof Led Wheel Lights
Waterproof Led Wheel Lights
Waterproof Led Wheel Lights
Waterproof Led Wheel Lights
Waterproof Led Wheel Lights
Waterproof Led Wheel Lights
Waterproof Led Wheel Lights
Waterproof Led Wheel Lights
Waterproof Led Wheel Lights
Waterproof Led Wheel Lights
Waterproof Led Wheel Lights

Waterproof Led Wheel Lights

Price
$19.99
$11.99
Save  $8.00
Color
Please select a color
Quantity
Please select a quantity
Quantity
Worldwide shipping
Free returns
24/7 customer support
Secure payments

Your best love the car is not eye-catching, that isn't handsome enough!  

Just attach an LED to your wheel that can cut through the silence of the night and become the light that passes through the darkness.

 Cool Hot Wheels Design

Install this LED tire light on your ordinary car, let your car shine a light in the dark, the four luminous wheels are like driving in outer space, it can work continuously for 700 hours and give you the most dreamy experience.

 Safety

Our bike lights increase visibility at night and in bad weather for safety. In bad weather, it can even play a warning role, and the safety factor will be greatly improved!

 Single Induction Vibration Function

This LED wheel light is activated by motion, lights turn on when moving; off when stopped. The LED value bike light is a single induction vibration type, lights are extra bright when the wheel is turning.

 Waterproof & Portable

Our Bike Tire Value Lights have been tested for water resistance. Don't worry about the bicycle wheel light being damaged when riding in the rain, suitable for all kinds of weather. Small size is more convenient to carry.

 Easy To Install

As shown, this value light can be easily installed and removed in seconds, just remove the original type value cap and put it in the LED light.

Enjoy the super-bright, energy-saving, long life of LED. (Note: Please tighten the bicycle when installing to avoid being stolen)

 

Color: red,blue,yellow,green

Battery: 3 AG10 button battery

Fits for: Bike, Motorcycle,Car

Weight: 32g

Size: 12*6.7*2(cm)

PACKAGE INCLUDE: 

 

1 / 4 / 10 x Premium Led Wheel Lights
    Power Supply: Battery (Powered By AG10 Batteries / Button Battery)

    Low Battery? No worries. The battery is easy to replace as it's the same as the battery of watches.

    Notice: 

    1. The battery must be positive down when installing, Do not remove the insulating plastic sheet inside the lamp case, which is used to prevent short-circuiting of the battery and the lamp shell.

    Specification:

    Weight: 20g

    Material: Half aluminum and half plastic

    Size: 6.2*2cm

    Package included:

     2 x Premium Led Wheel Lights

    note:

    Due to the different monitor and light effects, the actual color of the item might be slightly different from the color showed on the pictures.

      Customer Reviews
      Here are what our customers say.
      Write a Review
      Customer Reviews
      Wow you reached the bottom
      Newest
      Most liked
      Highest ratings
      Lowest ratings
      ×
      class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
      The review would not show in product details on storefront since it does not support to.