Life A1 | Bluetooth Earbuds with Customized Sound (2024)

0 / 0

Life A1 | Bluetooth Earbuds with Customized Sound (9)

Life A1 | Bluetooth Earbuds with Customized Sound (10)

Life A1 | Bluetooth Earbuds with Customized Sound (11)

Life A1 | Bluetooth Earbuds with Customized Sound (12)

Life A1 | Bluetooth Earbuds with Customized Sound (13)

Life A1 | Bluetooth Earbuds with Customized Sound (14)

Life A1 | Bluetooth Earbuds with Customized Sound (15)

Life A1 | Bluetooth Earbuds with Customized Sound (16)

3 Customizable Sound Modes for Musical Freedom

  • Expertly-Tuned Sound: Life A1 true wireless earbuds have oversized 8mm drivers with triple-layer composite diaphragms to produce powerful sound with 40% more bass, 100% more treble, and clear mids.
  • 3 Custom Sound Modes: Signature mode produces balanced sound that’s perfect for all music genres. Switch to Bass Booster to intensify bass-heavy songs for workouts or choose Podcast to enhance mids for podcasts and audiobooks.
  • 35-Hour Playtime: Life A1 true wireless earbuds have 9 hours of playtime from a single charge and an extra 3 charges from the compact charging case. A quick 10-minute charge gives you 1.5 hours of listening when you’re in a rush.
  • 2 Ways to Charge: Use the included Anker USB-C cable to charge the case quickly or simply place it down on a wireless charging pad for super-convenient recharging.
  • IPX7 Waterproof: Life A1 true wireless earbuds are watertight to keep them protected while you work up a sweat or get caught in the rain.

Model Number: A3927,A3927L,A3927R

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('Hurry! Sale 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! Sale 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; }})

$49.99

Life A1 | Bluetooth Earbuds with Customized Sound (17)

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.

Life A1 | Bluetooth Earbuds with Customized Sound (18)

Want priority shipping? Become a member >

Conditions: Orders completed on business days before 1PM PT will be shipped the same day. Later orders will be shipped the next business day.

Join our Registry, and create your own wish list for gifts now!

${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 `

  • Life A1 | Bluetooth Earbuds with Customized Sound (19) Life A1 | Bluetooth Earbuds with Customized Sound (20)

    ${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, 'A3927012', custom_variants_prescription) } } })

    Email me when available

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

    Life A1 | Bluetooth Earbuds with Customized Sound

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

    • Expertly-Tuned Sound: Life A1 true wireless earbuds have oversized 8mm drivers with triple-layer composite diaphragms to produce powerful sound with 40% more bass, 100% more treble, and clear mids.
    • 3 Custom Sound Modes: Signature mode produces balanced sound that’s perfect for all music genres. Switch to Bass Booster to intensify bass-heavy songs for workouts or choose Podcast to enhance mids for podcasts and audiobooks.
    • 35-Hour Playtime: Life A1 true wireless earbuds have 9 hours of playtime from a single charge and an extra 3 charges from the compact charging case. A quick 10-minute charge gives you 1.5 hours of listening when you’re in a rush.
    • 2 Ways to Charge: Use the included Anker USB-C cable to charge the case quickly or simply place it down on a wireless charging pad for super-convenient recharging.
    • IPX7 Waterproof: Life A1 true wireless earbuds are watertight to keep them protected while you work up a sweat or get caught in the rain.

    See More

    Life A1 | Bluetooth Earbuds with Customized Sound

    Life A1 | Bluetooth Earbuds with Customized Sound (21)

    Life A1 | Bluetooth Earbuds with Customized Sound (22)

    Signature Mode

    Balanced sound that’s perfect for daily listening—from your daily commute to relaxing at home.

    Life A1 | Bluetooth Earbuds with Customized Sound (23)

    Bass Booster Mode

    When you need maximum bass to work up a sweat, switch to Bass Booster for instant intensification.

    Life A1 | Bluetooth Earbuds with Customized Sound (24)

    Podcast Mode

    Makes voices stand out and sound clearer when you’re listening to podcasts and audiobooks.

    Life A1 | Bluetooth Earbuds with Customized Sound (25)

    35 Hours Of Playtime

    Enjoy 9 hours of playtime from a single charge and get another 3 full charges from the compact charging case.

    Life A1 | Bluetooth Earbuds with Customized Sound (26)

    Wireless Charging

    Place Life A1’s charging case down on a charging pad to charge wirelessly.

    Life A1 | Bluetooth Earbuds with Customized Sound (27)

    Fast Charging

    Put the true wireless earbuds in the case for just 10 minutes and get 1.5 hours of playtime.

    Life A1 | Bluetooth Earbuds with Customized Sound (28)

    One-Step Pairing

    Life A1 have Bluetooth 5.0 for easy pairing and will automatically connect with the last paired device. Also, take a single earbud from the case when you want to make calls or listen to music while maintaining awareness of the world around you.

    Life A1 | Bluetooth Earbuds with Customized Sound (29)

    On-Ear Control

    Use the built-in button on the true wireless earbuds to switch between the 3 sound modes, play/pause music, adjust the volume, or activate Voice Assistants.

    Life A1 | Bluetooth Earbuds with Customized Sound (30)

    Compact Design

    The low-profile true wireless earbuds sit comfortably in your ears, while the slim charging case easily fits in pockets and small bags.

    Customer Reviews

    Based on 1881 reviews

    79%

    (1479)

    21%

    (400)

    0%

    (1)

    0%

    (0)

    0%

    (1)

    J

    John

    Affordable and meets expectations

    Fits perfectly with great quality sound and battery life. Thumbs up. Surely intend to get another one for my girlfriend.

    Life A1 | Bluetooth Earbuds with Customized Sound (31)

    O

    Obed Samudio

    Controls are weird, good sound and grip tho

    Overall a good earphones for the price, the controls are weird ( double tap for pause, left tap to next song, and so on)

    Four stars

    Life A1 | Bluetooth Earbuds with Customized Sound (32)

    A

    Angie

    Good for price but can be better

    It is my first day using Anker products and here is my feedback
    A. Pros
    1. The case and the buds are wellmade and doesn't look like a cheap pair, compared to my Jabra ellite, it is way better.
    2. Sound quality is good and I didn't fave any humming noise so far.
    3. The tip and wing are separate, and this is good feature as you will be able to fit the buds to your specific ear shape.
    4. The case supports wireless charging whixh again is a good feature for the price.
    5. It is IPX7 means it is splash and dust proof, which is awesome.
    6. Price is good for the quality

    Cons
    1. No aware mood!, for me Jabra elite3 has this feature and it is really good and safe if you intend to wear those pairs outdoors.
    2. Not on soundcore application. Comeon I have pairs at really lower price range and they have their own app!
    3. You have to memorize the shortcuts of the buttons

    Overall, it is good for its price range. It is my first time trying anker, and so far I like it.

    Life A1 | Bluetooth Earbuds with Customized Sound (33) Life A1 | Bluetooth Earbuds with Customized Sound (34)

    M

    Miroslaw

    Good but some manufacturing issues

    Updated: Company sent a replacement free of charge so I am raising my review to 5 stars for customer service. This unit doesn't have the logo issues.

    I purchased these because I didn’t feel comfortable carrying around $250 airpod pros and possibly losing them. For the price these are fine, the noise cancelling is good and it fits ok in the ear. The sound is good but not as amazing as they say, my pair of Sony ch-700n sound much better than these. I have two problems with these earbuds. First, sometimes you can hear a small static/white noise sound which is kind of annoying when listening to music, this only happens sometimes and not all the time. Second, the logos on the earbuds are uneven as seen in the picture, If somebody got really close to you and saw the earbud logos they’d see they are uneven. Time will tell how long these last.

    Life A1 | Bluetooth Earbuds with Customized Sound (35)

    P

    Pat B

    Nice budget buds with a few caveats

    The Anker Life A1's are a nice budget option that while great, could have a few minor QoL updates to make these a go-to recommendation.

    Pros:
    -Physical button controls
    -Decent sound for the money, mids are fine, the bass is okay, upper is a bit lacklustre but not terrible
    -Compact case
    -Reasonable battery life
    -Useful extra tips and pieces for the buds
    -A practical manual that's worth reading through
    -Noise cancelling is great for this price range
    -The magnets keeping in the buds are good, these aren't falling out anytime soon.

    Cons:
    -Case is a bit on the cheap side construction wise
    -Hinge of the case feels a bit weak, nothing terrible but something to keep in mind
    -Trying to add the larger black bits back onto the buds is a nightmare and can prevent them from charging (This was especially a terrible thing to an otherwise nice product)
    -Long-term comfort could be a bit better, even with the extra tips offered.

    Other:
    -The case can get a bit hot when charging wirelessly (not a major problem but just something I noticed)
    -EQ modes don't have a major impact, nor can one tell when a specific setting is selected
    -USB C was an excellent choice of connector and a welcomed surprise at this price point
    -Microphone is fine but nothing to write home about

    Life A1 | Bluetooth Earbuds with Customized Sound (36)

    Life A1 | Bluetooth Earbuds with Customized Sound (2024)
    Top Articles
    Latest Posts
    Article information

    Author: Gov. Deandrea McKenzie

    Last Updated:

    Views: 6181

    Rating: 4.6 / 5 (66 voted)

    Reviews: 81% of readers found this page helpful

    Author information

    Name: Gov. Deandrea McKenzie

    Birthday: 2001-01-17

    Address: Suite 769 2454 Marsha Coves, Debbieton, MS 95002

    Phone: +813077629322

    Job: Real-Estate Executive

    Hobby: Archery, Metal detecting, Kitesurfing, Genealogy, Kitesurfing, Calligraphy, Roller skating

    Introduction: My name is Gov. Deandrea McKenzie, I am a spotless, clean, glamorous, sparkling, adventurous, nice, brainy person who loves writing and wants to share my knowledge and understanding with you.