Welcome to our store

  • Home
  • Catalog
  • All Collections

WhatsApp_Image_2024-10-19_at_17.15.04.jpg

  • Home
  • Catalog
  • All Collections
Cart

The Champ Gear

IMFit 5lb-52.5lb Adjustable Dumbbells

Regular price $273.95
Regular price $273.95 Sale price $273.95
Sale
Size

IMFit 5lb-52.5lb Adjustable Dumbbells


(function(f) {var _np=(window.P._namespace("PremiumAplusModule"));if(_np.guardFatal){_np.guardFatal(f)(_np);}else{f(_np);}}(function(P) { P.now('premium-module-5-comparison-table-scroller').execute(function(init){ if (init) { return; } P.register('premium-module-5-comparison-table-scroller', function(){ return function() { P.when('jQuery', 'a-popover', 'A', 'ready').execute(function($, popover, A) { function initCompTable(module) { /** * Premium comparison table: popover trigger module */ var comparisonName = $(module).data('comparison-name'); (function() { var $additionalInfo = $('.aplus-v2 .aplus-popover-trigger'); $additionalInfo.each(function(i, trigger) { return popover.create(trigger, $(trigger).data()); }); $additionalInfo.hover( function() { $(this).focus(); } ); })(); /** * Premium comparison table: adjust column width module */ (function() { var VISIBLE_COLUMNS = 4.2; /* How many visible columns on load */ var MIN_WIDTH = 230; var getWidth = function() { return $(this).outerWidth(); } /* cache selectors */ var $container = $('.aplus-v2 .comparison-table #'+comparisonName), $header = $('.aplus-v2 .comparison-table #'+comparisonName+' td.attribute'), $slider = $('.aplus-v2 .comparison-table #'+comparisonName+' .table-slider'), $columns = $('.aplus-v2 .comparison-table #'+comparisonName+' .aplus-data-column'), $activeColumn = $('.aplus-v2 .comparison-table #'+comparisonName+' .aplus-data-column.active.active-item'); /* Formula for determining desired column width */ var calculatedColumnWidth = Math.floor( ($container.innerWidth() - $header.innerWidth()) / VISIBLE_COLUMNS ); var childWidths = $activeColumn.map(getWidth).get(); var maxChildWidth = Math.max(MIN_WIDTH, Math.max.apply(Math, childWidths)); var minColumnWidth = $columns.innerWidth(); /* set the min-width of each column to the calulated width or minWidth */ $columns.css( 'min-width', Math.max(MIN_WIDTH, (calculatedColumnWidth < minColumnWidth ? calculatedColumnWidth : minColumnWidth)) ); $activeColumn.css('width', maxChildWidth); /* show the component */ $container.removeClass('loading'); })(); /** * Premium comparison table: sticky attribute & column */ (function() { /* cache selectors */ const comparisonTable = document.querySelector('.aplus-v2 .comparison-table #'+comparisonName); const header = comparisonTable.querySelector('td.attribute'); const fixedColumn = comparisonTable.querySelector('td.active'); const attributeColumnObserver = new ResizeObserver((entries) => { for (let entry of entries) { const bounds = entry.target.getBoundingClientRect().width; const activeCellWidth = window.getComputedStyle(fixedColumn).left; if (bounds + "px" !== activeCellWidth) { const activeCells = document.querySelectorAll('.aplus-data-column.active'); activeCells.forEach(cell => cell.style.left = bounds + "px"); } } }) attributeColumnObserver.observe(header) })(); /** * Premium comparison table: top scroll bar */ (function() { /* cache selectors */ var $header = $('.aplus-v2 .comparison-table #'+comparisonName+' td.attribute'), $fixedColumn = $('.aplus-v2 .comparison-table #'+comparisonName+' td.active'), $scrollWrapperTop = $('.aplus-v2 .comparison-table #'+comparisonName+' .scroll-wrapper-top'), $scrollWrapperBottom = $('.aplus-v2 .comparison-table #'+comparisonName+' .scroll-wrapper-bottom'), $scrollWidth = $('.aplus-v2 .comparison-table #'+comparisonName+' .scroll-width'), $scrollBar = $('.aplus-v2 .comparison-table #'+comparisonName+' .scroll-bar'); /* confirm fixed column exists and can add width to the total width of the scroll bar */ var fixedColumnWidth = $fixedColumn.innerWidth(); if ( fixedColumnWidth === null ) { fixedColumnWidth = 0; } /* set width of scrollBar */ $scrollBar.css('width', $scrollWidth.innerWidth() + fixedColumnWidth + $header.innerWidth()); /* connect scrolls together */ $scrollWrapperTop.scroll(function() { $scrollWrapperBottom.scrollLeft($scrollWrapperTop.scrollLeft()); }); $scrollWrapperBottom.scroll(function() { $scrollWrapperTop.scrollLeft($scrollWrapperBottom.scrollLeft()); }); })(); } $('.aplus-v2 .premium-aplus-module-5 .table-container').each(function(index, module) { initCompTable(module); }); }); } }); }); }));



(function(f) {var _np=(window.P._namespace("PremiumAplusModule"));if(_np.guardFatal){_np.guardFatal(f)(_np);}else{f(_np);}}(function(P) { P.now('premium-module-12-nav-carousel').execute(function(init) { if (init) { return; } P.register('premium-module-12-nav-carousel', function(){ return function() { P.when('A', 'jQuery', 'a-carousel-framework', 'ready').execute(function (A, $, framework) { function initiateCarousel(module) { var MODULE_ID = $(module).data('module-id'); /** * Carousel button element classname * @const */ var GOTO_BTN_CLASS_NAME = "aplus-goto-btn-" + MODULE_ID; /** * Carousel button element active classname * @const */ var GOTO_BTN_ACTIVE_CLASS_NAME = "aplus-active"; /** * AUI name for aui carousel * @const */ var CAROUSEL_NAME = "premium-aplus-12-carousel-" + MODULE_ID; /** * Module class name * @const */ var MODULE_CLASS_NAME = ".aplus-v2 .premium-aplus-module-12"; /** * Carousel text container class name * @const */ var TEXT_CONTAINER_CLASS_NAME = MODULE_CLASS_NAME + " .aplus-carousel-text-container-" + MODULE_ID; /** * Carousel text hidden class name * @const */ var TEXT_CONTAINER_HIDDEN = "aplus-hidden"; /** * Carousel horizontal scroll container class name * @const */ var HORIZONTAL_SCROLL_CONTAINER_CLASS_NAME = MODULE_CLASS_NAME + " .aplus-horizontal-scroll-container-" + MODULE_ID; function showCarouselText(oldIndex, newIndex) { var oldClass = TEXT_CONTAINER_CLASS_NAME + "-" + oldIndex; var newClass= TEXT_CONTAINER_CLASS_NAME + "-" + newIndex; $(oldClass).addClass(TEXT_CONTAINER_HIDDEN); $(newClass).removeClass(TEXT_CONTAINER_HIDDEN); } function scrollToCarouselButton(scrollLeft) { if ($(HORIZONTAL_SCROLL_CONTAINER_CLASS_NAME).length) { $(HORIZONTAL_SCROLL_CONTAINER_CLASS_NAME).animate({scrollLeft}, 200); } } /** * Creates a CarouselButton class for provided carousel instance * @param {object} carousel - AUI Carousel instance * @returns {Class} - CarouselButton Class */ function CarouselButtonTemplate(carousel) { /** * Button for controlling the active slide * @constructor * @param {number} index - slide index * @param {DOMElement} [elem] - optional DOM element to use as this objects DOM representation */ function CarouselButton(index, elem) { var self = this; this.index = index; this.carousel = carousel; /* create the button element */ this.elem = this.getElem(elem); this.$elem = $(this.elem); /* store jquery version */ this.elem.addEventListener('click', self.handleClick.bind(self)); this.elem.setAttribute('role', 'tab'); /* add this object to the object manager */ CarouselButton.objects.byId[index] = this; CarouselButton.objects.all.push(this); } /** * Describe behavior for click events on this.elem * @memberOf CarouselButton */ CarouselButton.prototype.handleClick = function(e) { e.preventDefault(); this.carousel.gotoPage(this.index); }; /** * Enter active state * @memberOf CarouselButton */ CarouselButton.prototype.activate = function() { this.$elem.addClass(GOTO_BTN_ACTIVE_CLASS_NAME).attr('aria-selected', 'true'); }; /** * Enter inactive state * @memberOf CarouselButton */ CarouselButton.prototype.deactivate = function() { this.$elem.removeClass(GOTO_BTN_ACTIVE_CLASS_NAME).attr('aria-selected', 'false'); }; /** * Returns an existing or creates a new bound element for this object * @memberOf CarouselButton * @param {DOMElement} [elem] - optionally provide an existing element in the DOM to use * @returns {DOMElement} - this objects DOM representation */ CarouselButton.prototype.getElem = function(elem) { if (this.elem) return this.elem; if (elem) return elem; var createdElem = document.createElement('span'); createdElem.className = GOTO_BTN_CLASS_NAME; return createdElem; }; /** @const Object manager */ CarouselButton.objects = { byId: {}, all: [], }; return CarouselButton; } framework.onInit(CAROUSEL_NAME, function(carousel) { /** @const {Class} */ var CarouselButton = CarouselButtonTemplate(carousel); /* create carousel controls */ var $carouselBtns = $(safeClassSelector(GOTO_BTN_CLASS_NAME)); var btns = $carouselBtns.map(function(i, btnElem) { return new CarouselButton(i + 1, btnElem); }); /* activate first one */ CarouselButton.objects.byId[1].activate(); /* Listen to slide changes */ A.on("a:carousel:" + CAROUSEL_NAME + ":change:pageNumber", function (data) { var newCarouselButton = CarouselButton.objects.byId[data.newValue]; var marginLeft = parseInt(getComputedStyle(newCarouselButton.elem).getPropertyValue('margin-left')); var positionLeft = newCarouselButton.elem.offsetLeft - marginLeft; newCarouselButton.activate(); CarouselButton.objects.byId[data.oldValue].deactivate(); scrollToCarouselButton(positionLeft); showCarouselText(data.oldValue, data.newValue); }); }); /** * @returns {string} - css classname prefixed with module selector */ function safeClassSelector(className) { return '.' + MODULE_CLASS_NAME + ' .' + className; } } $('.aplus-v2 .premium-aplus-module-12 .aplus-carousel-container').each(function (index, module) { initiateCarousel(module); }); framework.createAll(); framework.initializeAll(); }); } }) }); }));




The video showcases the product in use.The video guides you through product setup.The video compares multiple products.The video shows the product being unpacked.
(window.AmazonUIPageJS ? AmazonUIPageJS : P).load.js('https://images-na.ssl-images-amazon.com/images/I/51xHDw9B1fL.js?AUIClients/VSEPlayer'); (window.AmazonUIPageJS ? AmazonUIPageJS : P).load.js('https://images-na.ssl-images-amazon.com/images/I/21L2L4uKEUL._RC|01x4giTy+uL.js,01r9LpT6pbL.js,41WNhIpMCgL.js,11QfrzttlqL.js,91qahXPBdEL.js,01ELLYeIOkL.js_.js?AUIClients/Brila'); (function(f) {var _np=(window.P._namespace("vse-ns-initVSEPlayerOnLoad"));if(_np.guardFatal){_np.guardFatal(f)(_np);}else{f(_np);}}(function(P) { P.when('VSEPlayer').execute(function(vsePlayer){vsePlayer.initPlayer('aplus-623823-player-ps');}); //Please use below event to register FeedbackForm P.when('A', 'VSEComponentAssets').execute('vse-ns-player-initialization', function(A, asset) { A.trigger('vse:ns:player:aplus-623823:init', 'aplus-623823-player-ps'); }); }));


Previous page
Next page
(function(f) {var _np=(window.P._namespace("PremiumAplusModule"));if(_np.guardFatal){_np.guardFatal(f)(_np);}else{f(_np);}}(function(P) { P.when('premium-module-12-nav-carousel').execute(function(init){ init(); }); }));


Previous page
Next page
(function(f) {var _np=(window.P._namespace("PremiumAplusModule"));if(_np.guardFatal){_np.guardFatal(f)(_np);}else{f(_np);}}(function(P) { P.when('premium-module-12-nav-carousel').execute(function(init){ init(); }); }));

Get Fit with IMFit


IMFIT Adjustable Dumbbell

logShoppableMetrics("premium-module-5-comparison-table-scroller", true)

IMFit AIO Dumbbells

logShoppableMetrics("premium-module-5-comparison-table-scroller", false)
Buying Options

IMFit Elliptical Trainer

logShoppableMetrics("premium-module-5-comparison-table-scroller", false)
Buying Options

IMFit PowerArc

logShoppableMetrics("premium-module-5-comparison-table-scroller", true)

Urevo E3S Walking Pad

logShoppableMetrics("premium-module-5-comparison-table-scroller", false)
Buying Options

A1 PRO Walking Pad

logShoppableMetrics("premium-module-5-comparison-table-scroller", false)
Buying Options

IMFIT Fitness Stepper

logShoppableMetrics("premium-module-5-comparison-table-scroller", false)
Buying Options
Customer Reviews
4.0 out of 5 stars
454
4.0 out of 5 stars
454
4.0 out of 5 stars
5
—
4.3 out of 5 stars
7
4.0 out of 5 stars
169
3.8 out of 5 stars
102
Price
$159.95$159.95 — — $224.99$224.99 — — —
Complete Body Work Out
Yes Yes Yes Yes Yes Yes Yes
App
No No No No Yes Yes No
Electric
No No No No Yes Yes No
Battery
No No No No No No Yes
Display
No No Yes Yes Yes Yes Yes
(function(f) {var _np=(window.P._namespace("PremiumAplusModule"));if(_np.guardFatal){_np.guardFatal(f)(_np);}else{f(_np);}}(function(P) { P.when('premium-module-5-comparison-table-scroller', 'ready').execute(function(init){ init() }); }));
  • Adjustable Dumbbells for Versatile Workouts – Elevate your home gym with our IMFIT adjustable dumbbell weight set, a must-have in any workout equipment for home gym. These adjustable dumbbells allow for a customizable range from 5 to 50 lbs, perfect for everything from basic hand weights to heavy strength training. Replace cumbersome free weights dumbbells sets with this compact solution. Ideal for dumbbells 20 lbs, 25 lb dumbbells, and kettlebell sets. The perfect choice for men and women.
  • Durable and Ergonomic Design – Designed for intense workouts, this dumbbell set is durable enough for daily use. With an easy-to-use dial, adjust the weight from 10 lb dumbbells set of 2 to heavier options like 20 lb dumbbells. Whether you’re doing barbell weights or calisthenics equipment exercises, this gym set delivers on performance. The secure, sturdy build ensures you can perform with confidence, whether you’re doing 15 lb dumbbells or 30 lbs dumbbells set of 2 workouts.
  • Space-Saving and Portable – Replace your cluttered dumbbell rack with our IMFIT adjustable dumbbells pair. This set of home gym equipment is a compact alternative to a full dumbbell set, including 10 pound dumbbells, 15 lb dumbbells set of 2, and 5 lbs dumbbells set of 2. It's perfect for smaller spaces, ensuring you have the exercise equipment for home gym without taking up unnecessary room. Pair it with your adjustable weight bench or curl bar for a complete workout setup.
  • Perfect for Strength Training and Toning – Whether you’re lifting 5 lb weights or pushing for 45 lbs weight plates, these adjustable dumbbells set of 2 fit seamlessly into your strength training routine. Switch easily between weights like 20lbs dumbbells set of 2, making it ideal for both beginners and experienced lifters. Hand weights are key for a variety of home gym accessories like bench press bars, kettlebell sets, and free weights, helping you meet your fitness goals faster.
  • Advanced Home Gym Equipment – Get the best out of your home workouts with our dumbbells adjustable set, perfect for pairing with a weight bench adjustable or workout equipment for home gym. The dumbell set allows for a full range of motion exercises, including curls, presses, and squats. Whether you’re using 10lbs dumbbells set of 2 or heavier dumbbells, the versatility of this gym equipment for home makes it a smart addition to your workout. Great for all fitness levels!
› See more product details
Brand IMGadgets
Colour Black
Item weight 24 Kilograms
Material Steel Plates Encased with Vinyl, Alloy metals, Iron
Special feature Non-Slip, Adjustable Weight
Use for Legs, Back
Product Dimensions 55L x 35W Centimetres
Style Adjustable dumbbell
Handle material Metal
Number of pieces 1

Versatility for Every User

The IMFit 5lb-52.5lb Adjustable Dumbbells are designed for everyone, from beginners to advanced fitness enthusiasts. You can easily adjust the weight from 5 pounds to 52.5 pounds, making them suitable for any workout routine. This versatility allows you to target different muscle groups effectively. Whether you prefer light weights for toning or heavier weights for strength training, these adjustable dumbbells can meet your needs.

Space-Saving Design

These dumbbells are perfect for home gyms where space is limited. Instead of buying multiple sets of weights, you only need one adjustable pair. This not only saves space but also reduces clutter. The compact design means you can easily store them under a bed or in a closet when not in use, keeping your workout area organized and tidy.

Durable and Comfortable Use

The IMFit 5lb-52.5lb Adjustable Dumbbells are built with high-quality materials to ensure durability. The ergonomic design provides a comfortable grip, preventing slippage during your workouts. With these dumbbells, you can focus on your fitness goals without distractions. Plus, their sturdy construction means they can withstand even the toughest workout sessions, giving you peace of mind as you lift.


Quick links

  • Search
  • Catalog
  • Collections
Payment methods
  • Choosing a selection results in a full page refresh.