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

GymCope Leggings

Regular price $44.99
Regular price $44.99 Sale price $44.99
Sold out
Colour Name
Size

GymCope Leggings: Perfect Fit for Every Workout


(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(); }); } }) }); }));


Soft Brushed Fabric

The high-density, skin-friendly, and non-see-through fabric provides you with a comfortable and luxurious experience during exercise.

Non-pilling Fabric

Made from fine fabric that is resistant to pilling, ensuring long-lasting performance even with regular wear.

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(); }); }));


GymCope Leggings for Women


Yoga Pants with Pockets

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

Flare Yoga Pants

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

Basic Leggings

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

Yoga Shorts

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

Butt Lifting Leggings

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

Booty Leggings

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

Ribbed Seamless Leggings

logShoppableMetrics("premium-module-5-comparison-table-scroller", true)
Customer Reviews
4.4 out of 5 stars
847
4.4 out of 5 stars
325
4.1 out of 5 stars
237
4.3 out of 5 stars
64
3.7 out of 5 stars
85
3.1 out of 5 stars
15
3.8 out of 5 stars
69
Price
$29.99$29.99 $26.99$26.99 — — — — $29.99$29.99
Material
78% Polyester, 22% Spandex 78% polyester, 22% spandex 78% Polyester, 22% Spandex 78% Polyester, 22% Spandex 92% Nylon, 8% Spandex Nylon+Cationic+Spandex Nylon+Spandex
Pockets
2 side pockets+waist pocket 2 side pockets innner waist pocket 2 side pockets+waist pocket no pocket no pocket no pocket
High Waist
✔ ✔ ✔ ✔ ✔ ✔ ✔
Squat Proof
✔ ✔ ✔ ✔ ✔ ✔ ✔
Seamless Design
✔ ✘ ✘ ✘ ✔ ✔ ✔
(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() }); }));

Introducing GymCope Yoga Leggings - the ultimate choice for active North American women. Elevate your workout with our YP10 model, expertly crafted for comfort and performance, suiting your active lifestyle. Material Matters: these black leggings blend 78% polyester and 22% spandex, offering a matte finish and exceptional features. Polyester ensures comfort, durability, and moisture-wicking, while spandex adds stretch. This blend provides a form-fitting feel that North American women adore, with fabric engineered for longevity and confidence. Flattering Design: The wide waistband offers tummy control and a beautiful silhouette. Triangular gusset yoga black pants, black tights, high waisted pants, leggings for women butt lift, tummy control leggings, women leggings, womens leggings tummy control, womens yoga pants, yoga pants women fit and curve comfortably, providing compression, support, and lasting durability. Functional Excellence: Enjoy convenience with side and inner pockets for workout essentials. Customer-Centric: GymCope prioritizes your satisfaction. Our after-sales service guarantees an exceptional experience. Find your fit on our size chart and embrace confidence in GymCope Yoga black leggings for women, and compression leggings women.

Product details

  • Fabric type
    78% Polyester, 22% Spandex
  • Care instructions
    Machine Wash
  • Closure type
    Elastic
  • Inseam
    28 Inches
  • Country of origin
    China

About this item

  • Blend of Comfort and Performance: GymCope presents the YP10 yoga pants with pockets for women, thoughtfully designed to offer North American women a blend of comfort and functionality; elevate your active lifestyle with our value-packed sportswear collection, tailored to enhance your joyful workout experiences
  • Endurance and Flexibility: Crafted from 78% polyester and 22% spandex, this single-sided brushed fabric boasts a matte finish that's soft; experience these womens leggings that resist wear and pilling, ensuring a lasting fit that's not see-through, making them suitable for the active bodies of North American women
  • Flattering Waistband and Contoured Fit: these high waisted leggings for women feature a wide waistband that not only slims the midsection but also highlights your figure; the inclusion of a triangular gusset ensures that the yoga pants mold to your curves without feeling too restrictive
  • Functional Pockets and Reflective Logo: Stay practical and safe with side pockets and an inner pocket for your essentials and an added inner pocket; the leggings with pockets for women feature a reflective logo for enhanced visibility during low-light activities, ensuring you can seamlessly transition from the studio to the outdoors
  • Unmatched Customer Care: At GymCope, we stand by the quality of our products; our dedicated customer service team is ready to assist you with any queries or concerns you might have; to ensure the fit, refer to our comprehensive sizing guide, helping you make the right choice for your body type and preferences

See more About this item

Designed for Comfort

GymCope Leggings are crafted with a blend of soft, breathable fabrics that ensure maximum comfort during your workouts. Whether you’re hitting the gym or going for a run, these leggings offer a snug fit that moves with you. Because of their stretchy material, they allow for a full range of motion, so you can focus on your performance rather than adjusting your clothing.

Stylish and Functional

Not only do GymCope Leggings provide the comfort you need, but they also come in a variety of trendy designs. With stylish patterns and colors, these leggings help you look your best, both in and out of the gym. So, you can confidently wear them for casual outings or events after your workout. It’s the perfect blend of fashion and function!

Durable and Easy to Care For

When you choose GymCope Leggings, you’re investing in durable activewear. They are designed to withstand the rigors of intense workouts, so you don’t have to worry about wear and tear. Additionally, they are machine washable and quick-drying, making laundry day a breeze. This durability ensures that you can rely on them for all your fitness activities.


Quick links

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