⚡Last Day Clearance💓Portable Touch Screen Monitor

$12.75
$99.99
-87%
Hz:  120Hz
Buy More Save More ::  Buy 1
Quantity

Description

Product Description

Screen Size27 Inches
Display Resolution Maximum1920 x 1080 Pixels
Special FeatureLCD Display; FHD 1080p; Touch Screen; AI Sound; Active HDR; Magic Explorer; Home Dashboard; Room to Room Share
Refresh Rate120 Hz / 144Hz

Multiple Adjustments

Rotate, swivel, tilt, adjust.

Multiple adjustment options let you watch in comfort wherever you are with StanbyME.

Wireless Design

Wireless design, endless possibilities.

A built-in battery lets you use StanbyMe wirelessly, so you can place it wherever you need.

Five Wheels

Just roll with it.

Five wheels hidden in the base of the product make it easy to move StanbyME around your home.

NFC

Tap into a world of entertainment.

StanbyME features NFC allowing you to wirelessly mirror content from your phone, tablet, or laptop.

Stream Share Content

The easy way to control, share, and play.

Use AirPlay 2 to stream, share, and mirror your favorite content from your iPhone, iPad, or Mac.

Your go-to screen for life, work, and play.

A variety of features, a wireless design, and expanded connectivity with AirPlay, NFC, HDMI, and USB support, allow you to use StanbyME in more places, for more of the things you love to do.

Touch Screen

Sharing is easy with StanbyME.

Connect devices by voice command using the Magic Remote, the TV menu, or the ThinQ app.

Room to Room Share

Sharing is easy with StanbyME.

Connect devices by voice command using the Magic Remote, the TV menu, or the ThinQ app.

About this item

  • Blurring the line between a television and tablet, this touch screen display frees you from power outlets and cables with a built-in battery that lets you work or play wherever you want
  • Five wheels in the base allow you to easily roll the StanbyMe over even surfaces from room to room. A rotatable screen easily sets the touch screen monitor in portrait or landscape mode
  • Wirelessly mirror content from your phone, tablet, or laptop via NFC—just tap your device to the NFC logo on the rear of the screen for immersive content on a larger screen
  • Airplay2 support lets you stream, share, or mirror your favorite content from your iPhone, iPad, or Mac. Use the Home app or Siri on your Apple devices with HomeKit to control the power, inputs, and volume*
  • Intuitive touch controls and a remote give you plenty of options to stay in control with comfort. In addition to the remote, batteries, stand, mobile device holder, power cable and quick start guide are included
  • 😍Click “Add to Cart” to get yours😍

     Worldwide Shipping ✈
    Please do note that shipping is insured. Tracking Numbers will ALWAYS be sent so you can track them every step of the way! Cool things are worth waiting for! ?
    ? 100% Risk-Free Purchase ?
    • We truly offer the most stunning, trendy highest-quality products in the world.
    • We will do WHATEVER it takes with outstanding customer service support to assist everyone as we highly value our customer satisfaction with absolute ZERO risks.
    • We make sure that every customer is 100% satisfied in every aspect!
    • If you are not satisfied with receiving the goods, you can apply for a refund.
    • You can pay with PayPal, which will protect your money.
    • ✉️ 24/7 Customer Support

    Our Warehouse

    Priority is given to delivery after payment. We’ll arrange the fastest shipping for you. Please consider any holidays that might impact delivery times. Please consider the transportation methods and unexpected situations that may affect the delivery time.




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.