RC Boat, WLtoys WL916 Remote Control Boat

$205.99
Quantity
/** @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);
people are viewing this right now
Shipping
Estimated Delivery:Feb-17 - Feb-22
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.
Description

Product Description

GoolRC WLtoys WL916 RC Boat for Kids and Adults

 

  • Function: Forward, backward, turn left and turn right, navigation light, low battery alarm, large and small rudder volume adjustment, left and right steering fine adjustment, capsize recovery, electronic water cooling system.

Good Toys for Kids and Adults

 

  • Remote control boat is great for lakes and rivers or even in the Pool! It is good toys for kids and adults.

Electronic Water Cooling System

 

  • The cooling system device can reduce the temperature of the motor in operation, reduce the loss of the motor and make the service life of the motro longer.

60KM/H High Speed Performance

 

  • Using brushless water-cooled heat dissipation motor, the power is abundant, the service life is longer, the performance is more stable, and the power is guaranteed, let you play freely, speed up to 60km/h.
 

Streamlined Design

 

  • It can reduce the pressure of the water to the speedboat during the sailling process, ensure the speed of the speeddboat.

Capsize and Recovery

 

  • Effectively solve the situation of hitting rocks and getting stuck on obstacles during navigation.

Low Battery Alarm

 

  • The low voltage return function can send an alarm signal to the remote control when the power is low.
 

High Speed RC Racing Boat

 

  • If you love RC boat, you will never miss this full scale RC boat. This boat can turn left/right, go forward, backward, fantastic and easy to use. With this RC boat, you are sure to have an unforgettable summer at the seashore! Get ready to enjoy it!

Sturdy ABS Plastic Material

 

  • The hull is made of ABS plastic, which is strong and smooth surface without burrs.

Rechargeable Battery

 

  • 11.1V 1800mAh Lithium-ion battery, it is removable and replaceable battery, working time is 5 minutes.

Crash Protected Shield

 

  • The combination of an-collision cover can effectively alleviate the impact of collsion and damage to the hull itself.

2.4GHz Radio Control System

 

  • 2.4Ghz high frequency wireless system, remote control distance up to 150 meters, stable remote control signal.
 

 

Remote Control Boat Size

 

  • Size: 46.7*14*13cm/18.38*5.51*5.12inch
  • Package List:
  • 1*RC Boat
  • 1*Remote Controller
  • 1*Boat Battery
  • 1*Boat Frame
  • 1*USB Charging Cable
  • 1*Cross Wrench
  • 1*Some Other Fittings

Product Description

Specifications

 

  • Model: WL916
  • Material: ABS Plastic, Electronic Part
  • Frequency: 2.4GHz
  • Maximum Speed: About 60Km/H
  • Remote Control Distance: About 150m
  • Working Time: About 5min
  • Charging Time: About 3.5h
  • Boat Battery: 11.1V 1800mAh Lithium-ion Battery (included)
  • Remote Controller Battery: 4* AA Battery (not included)
  • Package Information:
  • Package Size: 51.8*14.2*22cm
  • Package Weight: 1460g
  • Gift Box Package
 
 
  GoolRC WLtoys WL912-A RC Boat GoolRC V500 RC Fishing Bait Boat GoolRC WLtoys WL915-A Brushless RC Boat (Orange) GoolRC WLtoys WL915-A Brushless RC Boat (Red) GoolRC WLtoys WL912-A RC Boat Goolsky H100 RC Boat
 
Customer Reviews
3.6 out of 5 stars
16
3.4 out of 5 stars
29
3.6 out of 5 stars
16
3.5 out of 5 stars
17
4.0 out of 5 stars
16
4.1 out of 5 stars
104
Price $105.99 $159.99 $95.99 $89.99 $58.99 $27.99
Model WL916 V500 WL915-A WL915-A WL912-A H100
Frequency 2.4GHz 2.4GHz 2.4GHz 2.4GHz 2.4GHz 2.4GHz
Maximum Speed About 60km/h About 5.4km/h About 45km/h About 45km/h About 35km/h About 20km/h
Remote Control Distance About 150m About 500m About 80-100m About 80-100m About 80-100m About 150m
Working Time About 5mins About 2-4hours About 10-15mins About 10-15mins About 7-10mins About 8mins
Charging Time About 3.5hours About 3-6hours About 100mins About 100mins About 3hours About 100mins
Boat Battery 11.1V 1800mAh Battery (included) 7.4V 5200mAh Battery (included) 11.1V 1200mAh Battery (included) 11.1V 1200mAh Battery (included) 7.4V 1500mAh Battery (included) 7.4V 600mAh Battery (included)
Remote Controller Battery 4* AA Battery (not included) 4 * AA Battery (not included) 4 * AA Battery (not included) 4 * AA Battery (not included) 4*1.5V AA Battery (not included) 4 * AA Battery (not included)
Boat Size About 46.7*14*13cm About 55*27*20cm About 43*17*12cm About 43*17*12cm About 45*12*14cm About 35*12*10cm
 

You may also like