iRerts Pink 12V Chevrolet 3100 Powered Ride on Cars with Remote Control, Electric Car for Kids with Bluetooth, Music, USB Port, LED Light, 4 Wheels Kids Ride on Toys for Toddlers Boys Girls 3-6 Ages

$225.99
$369.99
Save $144.00
Quantity
Description

12v Kids Ride On Truck Car with Parents Control, Licensed Chevrolet 3100 Pickup Electric Car for Kid, Vintage Modeling, 3 Speeds, LED Lights, Bluetooth, USB, High-Power Up To 4.35 MPH

This iRerts 12V powered ride on car is more than just a kids toy, it's an officially licensed Chevrolet 3100 pickup truck that can be controlled by parents. This electric car for kids is equipped with multi-color LED lights, like a star in the night sky, which can be the guardian light of children no matter day or night. This electric car for kids is also equipped with music, Bluetooth, and USB connection functions, allowing children to enjoy the best music experience while driving. Functions such as battery power display, volume control, and power indicator allow parents to let their children experience the fun of driving with greater peace of mind. Its speed can be adjusted between 3 and 7 kilometers per hour, which is equivalent to 1.86 to 4.35 miles per hour, which is both safe and exciting. Moreover, this electric car for kids can also provide up to one hour of playtime, allowing children to enjoy the joy of driving. This is our 12V kids ride on car, an ideal toy that allows children to experience the fun of driving without parents having to worry.

 Specifications

  • Item Name: Ride on Car
  • Color: Pink
  • Material: Iron+Plastic
  • Battery: 12V 7Ah
  • Power: #550*2
  • Car Speed: 3-7 km/h(1.86-4.35MPH)
  • Playtime: 45-60 Mins
  • Charge Time: 10- 12 hours
  • Recommended Ages: 3-6 Years Old
  • Weight Capacity: 66.14 LBS
  • Product Dimension: 40.55"L x 21.65"W x 19.88"H
  • Weight: 29.32 LBS
  •  Package Includes

  • 1 x Ride on Car
  • 1 x 2.4G Remote Contorl
  • 1 x Charger
  • 1 x Instruction Manual
  •  Warm Tips

  • Seat: Only One Kid.
  • Children below 3 must be accompanied by parents while playing.
  • The suitable age range is only for reference, please carefully check the size of the car and combine the children's age and body shape when purchasing.
  • Dimensions based on manual measurement, there may be a reasonable error.
  • There will be a chromatic aberration caused by light difference, thanks for your understanding.
  • 🚗LICENSED RIDE ON CAR --The 12v electric car for kids is officially licensed by Chevrolet 3100. 12V 2 motors kids electric car provides your child with a wonderful riding experience. Restores the elegant design details of the real Chevrolet 3100 pickup with features such as high and low gears, headlights, openable doors, a horn, a safety belt, realistic sound effects, and tires for shock absorption. All the details are designed to bring your children the most realistic and interesting driving experience.

  • 🚗MULTIPLE FUNCTIONS FOR ENDLESS FUN -- Considering that kids may get tired of driving, this electric car for kids is built with multiple entertaining functions to cheer them up. Bright LED lights and loud horns add more fun while the dynamic music boosts their vigor. Besides, there is a Bluetooth, USB interface, TF slot, and AUX port, designed to provide a great number of music your little ones prefer.

  • 🚗2 DRIVING MODES -- This electric car for kids offers 2 modes to choose from. Kids can independently operate the ride on car using the pedals and steering wheel, enjoying a realistic driving experience. Additionally, the children's car comes with a 2.4GHz remote control, allowing parents to take over control whenever necessary. This ensures a safe and enjoyable driving experience for children, creating happy moments together.

  • 🚗POWERFUL KIDS RIDE ON CAR - -- Our ride on car with 2 powerful driving motors can reach a safe speed of 1.86-4.35  mph. The rechargeable 12V 7AH battery and charger adapter allow kids to enjoy 1-2 hours of playtime. Besides, with a steering wheel and high/low-speed buttons, kids can freely control their direction and speed.

  • 🎁GIFT FOR KIDS -- This 12v ride on car with great reliability serves to be a perfect gift to accompany your kids and is perfect for both indoor and outdoor play. and 4 wear-resistant wheels, suitable to ride on all terrains. This 12v kids electric car is an ideal gift for birthdays, parties, Christmas, New Year, and more.

  • 💗SERVICE GUARANTEE -- iRerts aims to provide kids with safe and reliable toys and children's products. If you have any questions about our products, please contact us online, our professional customer service team will reply within 24 hours.

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.