RCB D5 ABE Elektroroller

RCB D5 Fat Tire Offroad-Elektroroller (RCB D5 ABE Elektroroller ist in Deutschland straßenzugelassen)-Scooter mit Straßenzulassung (ABE), 90-100KM Reichweite, 20.8Batterie, 500W Motor, 10 Zoll Vollreifen,APP-Steuerung, Doppelter Stoßdämpfung, Faltbar Elektro-Roller
€699.99
€1,599.99
2 sold
Color : black
Quantity
Description

➤【With road approval ABE】: With the RCB electric scooter you can drive safely on public roads
➤【Powerful motor and long battery life】 Equipped with a 500W motor and 48V / 20.8Ah battery, RCB D5 electric scooters offer a max. speed of 20KM/H and a general range of 90-100KM.
➤【Safe driving】The D5 electric scooter is equipped with an intelligent braking system: disc brakes front and rear + E-Brake. And large lighting system: headlights, rear lights to ensure your driving safety.
➤【Double suspension】The RCB D5 electric scooters have been developed for exploration and off-road driving. D5 electric scooter is equipped with a double suspension system, 10-inch wheels and wider pedals. It makes it easier for you to complete daily trips and handle all kinds of road conditions with ease!
➤【High-quality tires】 Anti-blowout + self-repairing + non-slip and wear-resistant. RCB D5 electric scooter is equipped with powerful 10-inch tires for a safe and comfortable ride.
➤【APP & Display】 D5 is an APPP-enabled electric scooter that allows you to experience the functions: speed modes, battery life, driving data, headlights, etc. A clear LED display shows the scooter's data and makes driving easier and smarter.
➤【Foldable E-Scooter】 The D5 electric scooter is available in three different heights, folded size is 118×22.8×54cm and has a net weight of 29.6KG(65.3Lbs), easy to carry and store.
➤【Please note】Please refer to local laws and regulations. Weight, road conditions, wind speed, slope and other factors will affect the speed and durability of the electric scooter.

Name Elektroroller
Modell D5
Roller: Lx Wx H (CM) 118×60×139cm
Nach dem Falten: L × W × H(CM) 118×22.8×54cm
Nettogewicht(KG) 29.6KG(65.3Lbs)
Bruttogewicht (KG) 35KG(77.1Lbs)
Last Gewicht (KG) 150KG (331lbs)
Anwendbares Alter 16+
Geschwindigkeit(KM/h) 10KM/h(6.2Mph);15KM/h(9.3Mph);20KM/h(12.5Mph)
Allgemeines Sortiment (KM) 90-100KMLoad 75KG)
Ip-Bewertung IPX4
Aufladezeit (H) 6-8H
Kapazität(Ah) 48V,20.8Ah,998.4Wh
Motorleistung (W) 500W
Brake Scheibenbremsen vorne und hinten + E-Brake

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.