Price
$109.00
$59.90
Save  $49.10
70 sold

Telescopic Rotation Automatic Masturbator for Men

color
#1
Quantity
GETTING CLOSER! ONLY $69.00 AWAY FROM FREE SHIPPING!
Estimated delivery between 5-15 business days &WanbExpress
Description

1.【Super high-tech appearance design】The exterior design resembles a pumpkin, with a black and gold spherical shell. If your family and friends don't look carefully, they may not know that this is a male masturbator, which is different from the traditional aircraft cup style in appearance.The zigzag shell helps you hold the FJB17 more stably, so you don't have to worry about slipping out of your hands during use.

2.【Through internal design】The FJB17 has caps on both ends, which means it won't be limited by the length of your penis. The large TPE particles wrap your penis, and every time you press the button in the middle after it is turned on, it will change to a telescopic rotation mode, and you can choose from 8 modes.

3.【Realistic sexy female moaning】Just press the button of the horn, and you can masturbate with the sexy moaning sound of women. You can choose to play it in a solitary place, or plug in your headphones for an immersive sim sex.

❤【Note 1】The inner sleeve is made of soft TPE material, We recommend use water-based lubricants with toys,Definitely DO NOT use oil-based lube(including massage oils) as they may break down the material.

❤【Note 2】Unlike other products, you can't shut the lid when you turn the masturbator off,because the inner sleeve is on the outermost side. after you turn off our male masturbator, Please press and hold the middle button,its inner sleeve will continue to rotate within a few seconds and reset to the correct position, so you can easily shut the lid

❤️Thrusting & Rotating

This auto sex blowjob machine that simulates the sensations of real oral sex, will provide you an real, and intimate experience. This thrust device will stimulate all the nerve endings in, on, or around the penis that you never knew. The rotations modes are like a tornado spinning around and around over every inch of your member providing you with intense stimulation, make your toes curl and whole body shake providing you an ultimate experience of pleasure and release.

❤️8 Automatic Rotation & Telescopic Mode

The FJB17 male masturbator cup doesn't hold back when it comes to pleasure!It has 8 telescopic and rotation modes,which can give your penis double strong stimulation. Combined with market feedback,we have strengthen the thrust power of the sex toy.You can choose the appropriate telescopic and rotation modes,and you don't have to worry about the suddenly stuck disturbing your experience.It is equipped with a powerful motor, which can be charged for 4 hours continuously, which can provide it with strong power for 45-60 minutes of work, bringing you the ultimate sex experience.

❤️Realistic sexy female moaning

The FJB17 male masturbator has a sound function, the real female orgasm moaning sound accompanied by the peristalsis of TPE particles wraps your penis, bringing you into an unprecedented top-level satisfaction, making you feel like your sexual partner is moaning.

❤️Removable silicone liner & easy to clean

This automatic male masturbator cup is Not waterproof. Please make sure that the electronic device do not come into contact with water. Before cleaning, please take out the silicone in the middle; Just need to clean the silicone cover.The detachable design makes the toy easier to wash and dry. You no longer have to worry about TPE toys breeding bacteria or cleaning.

Free shipping over $69

Free shipping over $69

Customer service

24/7 Customer Service

Secure payment

accept Paypal & Credit Card

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.