Motion+ | Portable Speaker with Intense Bass (2024)

Ultra-Wide Frequency Range for Remarkable Sound

  • Hi-res Audio: motion+ is equipped with stunning Hi-Res Audio which is further enhanced by Qualcomm aptX for lossless music reproduction when streaming via Bluetooth.
  • Huge sound with intense bass: packed with two Ultra high-frequency tweeters, neodymium woofers, and passive radiators to fill every corner of your room with 30W of rich sound. Low frequencies are enhanced in real-time by our exclusive bassuptm technology.
  • Exceptional depth and clarity: motion+’s Ultra-wide frequency range stretches from 50 Hz to 40 kHz and is paired with an advanced DSP to ensure all the details and idiosyncrasies of a song are faithfully reproduced.
  • IPX7 waterproof: fully-waterproof casing provides an impenetrable barrier against liquids.
  • 12-Hour playtime: motion+’s built-in 6, 700 mAh battery lets you effortlessly soundtrack wild weekends, cozy evenings, or long summer days outdoors.
  • Motion Plus speakers bought after November 2022 do not suppport TWS pairing with Motion Plus speakers purchased prior to November 2022.

Model Number: A3116

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 .gift-list .gift-title').length || $('.product-bundle .bundle-list .bundle-title').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('Sale Ends in.'); } 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('Sale Ends in.'); } 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; }})

99,99€

Motion+ | Portable Speaker with Intense Bass (13)

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.

${v.price}

${txt} `; }).join(''); $('.custom_variants_prescription_box').html(`

${MF.options_tit}

    ${dom}

`); $('.custom_variants_prescription').removeClass('swap--visible'); if (MF.show_prescription_txt) { const processDom = MF.process.map((v, i) => { const show = v.icon ? '' : 'swap--visible' return `

  • Motion+ | Portable Speaker with Intense Bass (14) Motion+ | Portable Speaker with Intense Bass (15)

    ${v.tit}

    ${v.desc}

  • ` }).join(''); const processTxtDom = MF.process_txt.map((v, i) => { const show = v.desc ? '' : 'swap--visible' return `

    ${v.tit}
      ${v.list}

    ${v.desc}

    ${v.tips}

    ` }).join(''); $('.prescription_txt').html(`

    ${MF.title}
      ${processDom}

    ${processTxtDom}

    `) $('.prescription_txt').removeClass('swap--visible') } else { $('.prescription_txt').addClass('swap--visible') } if (MF.hideQty == true) { $('.product_quantity, .purchase-details__quantity').addClass('swap--visible') $('.product_swatch').addClass('prescription') } else { $('.product_quantity, .purchase-details__quantity').removeClass('swap--visible') $('.product_swatch').removeClass('prescription') } } $(function() { if (custom_variants_prescription) { if (custom_variants_prescription.data.includes(v => v.sku == sku) > -1) { showPrescriptionBox(custom_variants_prescription.data, 'A3116011', custom_variants_prescription) } } })

    Email me when available

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

    Motion+ | Portable Speaker with Intense Bass

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

    • Hi-res Audio: motion+ is equipped with stunning Hi-Res Audio which is further enhanced by Qualcomm aptX for lossless music reproduction when streaming via Bluetooth.
    • Huge sound with intense bass: packed with two Ultra high-frequency tweeters, neodymium woofers, and passive radiators to fill every corner of your room with 30W of rich sound. Low frequencies are enhanced in real-time by our exclusive bassuptm technology.
    • Exceptional depth and clarity: motion+’s Ultra-wide frequency range stretches from 50 Hz to 40 kHz and is paired with an advanced DSP to ensure all the details and idiosyncrasies of a song are faithfully reproduced.
    • IPX7 waterproof: fully-waterproof casing provides an impenetrable barrier against liquids.
    • 12-Hour playtime: motion+’s built-in 6, 700 mAh battery lets you effortlessly soundtrack wild weekends, cozy evenings, or long summer days outdoors.
    • Motion Plus speakers bought after November 2022 do not suppport TWS pairing with Motion Plus speakers purchased prior to November 2022.

    See More

    Motion+ | Portable Speaker with Intense Bass

    Motion+ | Portable Speaker with Intense Bass (2024)

    FAQs

    What speaker brand has the most bass? ›

    S/NNamePrice
    1JBL PartyBox 310$799
    2Sony SRS-XG500$498
    3Monster Rockin' Roller 270X$238
    4Anker Soundcore Motion Boom$158.97
    3 more rows
    Oct 22, 2023

    Is Soundcore Motion+ good? ›

    Soundcore Motion+ has an excellent design and build that can really help with the sound dispersion and nice stereo separation. I have played with the eq bands quite a lot and they are real eq. Motion+ is a champion in its size category by delivering great bass response and exceptional mids and highs …

    How many watts is Soundcore motion+? ›

    Dual 40 kHz tweeter, neodymium woofer and passive audio drivers give you 30 W sound. Thanks to the 15° tilt, you can rely on excellent sound radiation.

    Which company is best for bass speakers? ›

    All Reviews
    ProductMusicBluetooth Bluetooth
    JBL PartyBox 10007.3Yes
    Marshall Woburn III7.8Yes
    SOUNDBOKS (Gen. 3)6.9Yes
    Denon Home 3507.6Yes
    11 more rows

    What gives a speaker more bass? ›

    Indoors, you can easily boost the bass by placing the speaker up against a wall or, even better, in a corner. The wall will reflect and artificially amplify the low frequencies. Outdoors, you can use this same amplification principle by placing the speaker against a low wall, for example.

    Does high bass damage speakers? ›

    Mechanical speaker failures occur when a speaker's cone is forced to move further than it was designed to. Thermal speaker failure occurs when a speaker is subjected to excessive power like volume or added bass, causing sensitive interior components to melt or burn.

    Does Anker Soundcore have good bass? ›

    Normally when a small speaker tries to push bass it ends up sounding fake or muddy, but Anker did a good job at maintaining quality in the low end. The deep bass kicks in 'Trouble' by TV on the Radio were displayed nicely and it doesn't feel like you're missing out on any of the song.

    Who is Soundcore made by? ›

    Anker Innovations
    Native name安克 (Ānkè)
    HeadquartersChangsha, Hunan, China
    Area servedWorldwide
    ProductsPower banks Charging cables Earbuds Headphones Wireless speakers Soundbars Wireless security cameras Car accessories
    BrandsAnker Soundcore Eufy Nebula AnkerMake Roav Zolo (defunct) Bolder KARAPAX (defunct)
    8 more rows

    Is Anker Soundcore Motion+ stereo or mono? ›

    The Anker Soundcore Motion+ and the Bose SoundLink Flex have different strengths. The Anker can play stereo content without downmixing it to mono and can get louder than the Bose.

    Does Soundcore Motion+ have a 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.

    Does Soundcore have good sound quality? ›

    soundcore speakers provide bass-driven audio and 360° surround sound to those who value sound quality, ensuring an impressive stereo speaker experience.

    Does Soundcore Motion+ have aux? ›

    Plugging in an audio cable will automatically switch to AUX mode. When using AUX mode, control audio playback via the connected device. Use the included USB cable to charge your Soundcore Motion+ and make sure it is fully charged before its first use.

    What speaker brand has the best sound quality? ›

    The best wireless speakers of 2024
    1. Sonos Era 100. The best wireless speaker overall. ...
    2. Apple HomePod mini. The best affordable wireless speaker, but you'll need to be an Apple fan. ...
    3. Bowers & Wilkins Zeppelin (2021) The best wireless speaker for a detailed sound. ...
    4. Sonos Five. ...
    5. Sonos Roam. ...
    6. KEF LS50 Wireless II. ...
    7. Sonus Faber Omnia.
    Jun 5, 2024

    How to know if a speaker has good bass? ›

    Another way to hear accurate, detailed bass is by listening over a good set of ear buds and then comparing it with the speakers. With ear buds, the mass of the drivers is so small that they will normally have excellent transient response.

    How do I choose a good bass speaker? ›

    One of the first things to consider is what size sub you want. Generally speaking, the larger the surface area of the woofer, the deeper it will play — that's indicated by the sub's frequency response, which is measured in Hz. It may be tempting to go for the largest sub you can find. But bigger is not always better.

    Does JBL or Bose have better bass? ›

    JBL speakers come with subwoofers, and the bass effect is better than Bose speakers. On top of that, the JBL speakers are also larger than Bose speakers, and their radiators have higher vibration levels to emit better and deeper bass tones.

    Is JBL known for bass? ›

    JBL is known for deep bass speakers, making them the go-to choice for car audio systems. In addition, they boast a unique subwoofer design, producing upright bass that elevates your experience.

    What speaker produces bass? ›

    Loudspeakers are an essential part of any sound system and play a crucial role in determining the quality of the audio output. While high-frequency speakers are important for reproducing treble sounds, low-frequency speakers, also known as subwoofers, are critical for producing deep and powerful bass tones.

    Which woofer has more bass? ›

    Big woofers mean better bass to most people. In general, big woofers (which take big cabinets) can produce more output than small woofers in small boxes.

    References

    Top Articles
    Latest Posts
    Article information

    Author: Frankie Dare

    Last Updated:

    Views: 6296

    Rating: 4.2 / 5 (53 voted)

    Reviews: 92% of readers found this page helpful

    Author information

    Name: Frankie Dare

    Birthday: 2000-01-27

    Address: Suite 313 45115 Caridad Freeway, Port Barabaraville, MS 66713

    Phone: +3769542039359

    Job: Sales Manager

    Hobby: Baton twirling, Stand-up comedy, Leather crafting, Rugby, tabletop games, Jigsaw puzzles, Air sports

    Introduction: My name is Frankie Dare, I am a funny, beautiful, proud, fair, pleasant, cheerful, enthusiastic person who loves writing and wants to share my knowledge and understanding with you.