Motion X500 | Surround Sound Bluetooth Speaker (2024)

The World’s Most Portable Spatial Audio Speaker

  • Immersive Spatial Audio:3 drivers deliver sound all around you, so you'll feel like your favorite artist is right there in front of you, every time you press play.
  • 3X More Detail:Motion X500 features Wireless Hi-Res certified sound, which lets you hear your favorite songs as they were meant to be heard.
  • 3 Fresh Finishes to Match Any Style:Get quality sound in a color you love with a choice of three finishes: Black Deluxe, Pink Punch, and Glitzy Blue.
  • Great Sound, Portable Size:Motion X500 portable Bluetooth speaker lets you take immersive spatial audio with 3X more detail wherever you go.
  • Fully Waterproof:With IPX7 protection, you can enjoy worry-free listening by the pool, at the beach, or even if it's raining.

2. Can I redeem multiple discount codes?

No. Discount codes cannot be combined.Only one code can be applied per order.

3. Why is my discount code invalid?

1) The discount code is not applicable to the specific items you want to buy

2) The discount code wasn't entered correctly

3) The discount code has expired

4) The discount code is not from soundcore's official website

If you have any questions,please feel free to reach out to our customer service team:service@soundcore.com

"); } function getMemberOrQuerySaving({price, sku, codeSave = 0}) { const memberDiscount = ShopMetafields.discountMember const memberWeekDiscount = ShopMetafields.discountMemberWeek const memberJoined = sessionStorage.getItem('memberJoined') const memberDiscountFromScript = ShopMetafields.scriptDiscountMember const queryDiscount = ShopMetafields.discountQuery const queryDiscountFromScript = ShopMetafields.scriptDiscountQuery let save; let withBundleOrGift = $('.product-free-gift').length || $('.product-bundle').length if (withBundleOrGift) { return save } if ( memberDiscount?.active && Boolean("") && !memberDiscountFromScript?.excludeSkus?.includes(sku) ) { const memberSave = new Decimal(price).times(memberDiscount.discount); save = new Decimal(codeSave).plus(memberSave).toNumber(); }else if(memberWeekDiscount?.active && Boolean("") && memberJoined){ // start_ai_generated const memberSave = new Decimal(price).times(memberWeekDiscount.discount); save = new Decimal(codeSave).plus(memberSave).toNumber(); // end_ai_generated } else if ( queryDiscount?.active && !queryDiscountFromScript?.excludeSkus?.includes(sku) ) { const queryValue = getQueryVariable(queryDiscount.queryKey); if (queryValue == queryDiscount.queryValue) { const querySave = new Decimal(queryDiscount.discount).times(price); save = new Decimal(codeSave).plus(querySave).toNumber(); } } return save } function showDiscountBox(sku) { if (couponsData[sku] && couponsData[sku][0]) { let currentData = couponsData[sku][0]; ShowCode(currentData); if (window.GsapScrollTrigger) ScrollTrigger.refresh() } else { const memberOrQuerySaving = getMemberOrQuerySaving({ price: jsVariant.price, sku, }); if(memberOrQuerySaving > 0){ if ($('.product-marketing-module .product__marketing_module_coupon').length) { if ($('.product-marketing-module .product__marketing_module_coupon').data("show_discounts") === 'false') { return } } $('.sale.savings').text(`You Save: ${Shopify.formatMoney(memberOrQuerySaving)}`) } $('.couponWrapper').hide(); $('.DiscountMark').hide(); } } function ShowCode(data) { // 展示code文案 $('#couponCode').text(data.title); copyCodeTxt = data.title; // 展示折扣数值 let DiscountTxt; let DiscountedPrice; let savePrice; let price = jsVariant.price; let savingsAfterDrop = Number($('.price-container').data('savings') || 0); let currentPriceAfterDrop = Number($('.price-container').data('current-price') || 0) price = currentPriceAfterDrop || price let codeMoney = 0 if (data.value_type === "fixed_amount") { DiscountTxt = data.value_style; DiscountedPrice = Shopify.formatMoney(price + Number(data.value) * 100) savePrice = Math.abs(data.value) * 100 codeMoney = Math.abs(data.value) } else if (data.value_type === "percentage") { const savePriceValue = price * Math.abs(Number(data.value) / 100) DiscountTxt = Math.abs(parseInt(data.value)) + "%"; DiscountedPrice = Shopify.formatMoney(price - savePriceValue); savePrice = savePriceValue; }; $('.couponWrapper').data('code-money', codeMoney) $('#DiscountTxt').text(DiscountTxt); $('#DiscountMarkTxt').text(DiscountTxt); // 失效时间判断 let endsTime = data.ends_at ? new Date(data.ends_at).valueOf() : null; if (endsTime) { timeLine = setInterval(function() { nowTime = new Date().getTime(); let distance = endsTime - nowTime; if (distance < 0) { clearInterval(timeLine); $('.couponWrapper').hide(); $('.DiscountMark').hide(); $('.product__information .modal_price .salePrice').remove(); $('.product__information .current_price').removeClass("UnderscorePrice"); } else { // 展示折扣模块 $('.couponWrapper').show(); $('.DiscountMark').show(); // 展示倒计时 let days = Math.floor(distance / (1000 * 60 * 60 * 24)); let hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)); let minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60)); let seconds = Math.floor((distance % (1000 * 60)) / 1000); if(days >= 7) { $('#timeOutTxt').css('display', 'none'); $('#timeTxt').css('display', 'inline-block'); $('#timeTxt').html('Hurry! Offer Ends soon.'); } else if (days === 1) { $('#timeOutTxt').css('display', 'inline-block'); $('#timeTxt').css('display', 'none'); $('#newDtes').html(`${days} Day ${hours}:${minutes}:${seconds}`); } else if (days === 0) { $('#timeOutTxt').css('display', 'inline-block'); $('#timeTxt').css('display', 'none'); $('#newDtes').html(`Today ${hours}:${minutes}:${seconds}`); } else { $('#timeOutTxt').css('display', 'inline-block'); $('#timeTxt').css('display', 'none'); $('#newDtes').html(`${days} Days ${hours}:${minutes}:${seconds}`); } } }, 1000); } else { // 展示折扣模块 $('.couponWrapper').show(); $('.DiscountMark').show(); // 展示倒计时 $('#timeOutTxt').css('display', 'none'); $('#timeTxt').css('display', 'inline-block'); $('#timeTxt').html('Hurry! Offer Ends soon.'); } const memberOrQuerySaving = getMemberOrQuerySaving({ price: new Decimal(price).minus(savePrice), codeSave: savePrice, sku: data.sku, }); if ($('.product-marketing-module .product__marketing_module_coupon').length) { if (!$('.product-marketing-module .product__marketing_module_coupon').data("show_discounts")) { return } } if(memberOrQuerySaving > 0) { $('.sale.savings').text(`You Save: ${Shopify.formatMoney(Math.floor(memberOrQuerySaving))}`) } else if (!savingsAfterDrop) { if ($('.product__information .modal_price .salePrice').length == 0 || $('.product__information .current_price .salePrice').text() != DiscountedPrice) { $('.sale.savings').text(`You Save: ${Shopify.formatMoney(Math.floor(savePrice))}`) } } } function copyCouponCode() { execCoy(copyCodeTxt); $('.copyTextReplace').show(); $('.copyText').hide(); setInterval(function(){ $('.copyTextReplace').hide(); $('.copyText').show(); }, 3000); } function execCoy(text) { const input = document.createElement('INPUT'); input.style.opacity = 0; input.style.position = 'absolute'; input.style.left = '-100000px'; document.body.appendChild(input); input.value = text; input.select(); input.setSelectionRange(0, text.length); document.execCommand('copy'); document.body.removeChild(input); return true; }})

$229.99

Motion X500 | Surround Sound Bluetooth Speaker (15)

soundcore guarantees that we will refund you the difference if you find a lower price on the soundcore website within 30 days of your purchase.

Your purchase must have been made within the last 30 days. You must email us a screenshot of the lower price. The refund is only applicable during the promotional period.

Email me when available

Leave your email address and we will notify you when the product is back in stock.

Motion X500 | Surround Sound Bluetooth Speaker

(Optional) Join our eufy email list to get special offers and more.

  • Immersive Spatial Audio:3 drivers deliver sound all around you, so you'll feel like your favorite artist is right there in front of you, every time you press play.
  • 3X More Detail:Motion X500 features Wireless Hi-Res certified sound, which lets you hear your favorite songs as they were meant to be heard.
  • 3 Fresh Finishes to Match Any Style:Get quality sound in a color you love with a choice of three finishes: Black Deluxe, Pink Punch, and Glitzy Blue.
  • Great Sound, Portable Size:Motion X500 portable Bluetooth speaker lets you take immersive spatial audio with 3X more detail wherever you go.
  • Fully Waterproof:With IPX7 protection, you can enjoy worry-free listening by the pool, at the beach, or even if it's raining.

Order Support

Fast, Free Shipping

30-Day Money-Back Guarantee

Hassle-Free Warranty

Lifetime Customer Support

Delivery & Payment

Motion X500 | Surround Sound Bluetooth Speaker (17)

Motion X500 | Surround Sound Bluetooth Speaker (2024)

FAQs

Motion X500 | Surround Sound Bluetooth Speaker? ›

Each time you power on your Soundcore speaker, it will automatically connect to your last connected device if available within the Bluetooth range. If not, press the Bluetooth button to enter Bluetooth pairing mode. Two identical Soundcore speakers can pair up with each other for true wireless stereo sound.

How do I connect my Soundcore motion speaker? ›

Each time you power on your Soundcore speaker, it will automatically connect to your last connected device if available within the Bluetooth range. If not, press the Bluetooth button to enter Bluetooth pairing mode. Two identical Soundcore speakers can pair up with each other for true wireless stereo sound.

Is Soundcore Motion Boom loud? ›

The Anker Motion Boom is disappointing for videos and movies. While it can get pretty loud, there's compression present at max volume, so your audio doesn't sound as clean at louder volumes.

Does Soundcore Motion Plus have microphone? ›

The Anker Soundcore Motion+ has a microphone located next to the “BassUp” button on the top of the speaker, which you can use to answer calls without your phone.

What Bluetooth version is Soundcore Motion Boom Plus? ›

The Motion Boom Plus is compatible with Bluetooth 5.3, and supports the AAC and SBC codecs, but not AptX.

Why is my Soundcore speaker not connecting? ›

If you fail to connect the speaker to your device, you can try the following steps: - Confirm the speaker is fully charged and it's not paired with other devices. - Forget all Bluetooth pairing records on your device. - Reboot your speaker and your device.

Are Soundcore Bluetooth speakers any good? ›

The Soundcore Motion 300 is Anker's answer to that Bose speaker. Around the same size as the Bose, it doesn't sound quite as good, but it sounds impressive for its compact size and costs only $80. As a result, we've awarded it a CNET Editors' Choice as a strong value pick in the portable Bluetooth speaker category.

Why is my Soundcore speaker so quiet? ›

It could be because of the speaker's battery, the device connected with the speaker, the audio source, and so on. If your Soundcore's volume is too low, please try these steps: Confirm that Soundcore is fully charged. Reset Soundcore by holding the Bluetooth button for 5-8 seconds.

Why is Soundcore so good? ›

The ambient noise are better on these. The noise cancelation is just as good if not better on these. These alos fit in my ears better and are possibly even more comfortable. There is absolutely no reason to get premium buds when something like these exist for only 70$.

Does soundcore motion have AUX? ›

The soundcore Motion X600 speaker supports both Bluetooth mode and AUX mode.

Is soundcore Motion Plus worth it? ›

Motion+ is a champion in its size category by delivering great bass response and exceptional mids and highs … Guys, I highly recommend this product. The shimmer on the high-end from those tweeters makes me love it more even after 4 years …

How many watts is Soundcore Motion+? ›

Motion+ is loaded with two 40kHz ultra-high frequency tweeters, neodymium woofers, and oversized passive radiators to deliver 30W of sound.

How long does the Soundcore Motion Boom last? ›

24-Hour Playtime

Motion Boom outdoor speaker has a 10,000mAh battery to power up to 24 hours of playtime. It also has charge-out to allow you to plug in your devices and charge while listening.

What brand is Soundcore? ›

Anker Soundcore

What is the difference between Soundcore select pro and motion boom? ›

The Select Pro is a slight step down from the Soundcore Motion Boom, which we included on our list of the best Bluetooth speakers for 2022. The major difference between these two models is that the Select Pro has a smaller battery, limiting it to 16 hours of listening time rather than the Motion Boom's 24 hours.

How do I reset Soundcore motion Bluetooth? ›

If you encounter issues such as being unable to connect to Bluetooth, noise, audio delay, or no sound, please reset your device. To reset your Soundcore Motion Boom Plus: Power it on, hold the bluetooth and volume+ button at the same time for 5-8s.

How do I turn on Bluetooth Soundcore? ›

Turn on the speaker by holding the power button for about a second. Once the speaker is powered up, press the Bluetooth button. Press it for about a second or two. Once the Bluetooth logo slow blinks, go to your phone, and do a Bluetooth device search.

References

Top Articles
Latest Posts
Article information

Author: Trent Wehner

Last Updated:

Views: 5536

Rating: 4.6 / 5 (76 voted)

Reviews: 83% of readers found this page helpful

Author information

Name: Trent Wehner

Birthday: 1993-03-14

Address: 872 Kevin Squares, New Codyville, AK 01785-0416

Phone: +18698800304764

Job: Senior Farming Developer

Hobby: Paintball, Calligraphy, Hunting, Flying disc, Lapidary, Rafting, Inline skating

Introduction: My name is Trent Wehner, I am a talented, brainy, zealous, light, funny, gleaming, attractive person who loves writing and wants to share my knowledge and understanding with you.