Men’s Black & Gold vein Sports Shorts

  • Sale
  • Regular price $45.57
Shipping calculated at checkout.


Elevate your activewear with Nordic Rebirth's black & gold marble vein gym shorts. Crafted from 100% polyester with extra light fabric, these shorts offer a comfy fit and moisture management for peak performance. With white drawstrings and a sleek design, they’re perfect for any workout routine. The seamless look, matched thread color, and absence of pockets ensure a smooth, uninterrupted style. Made in the USA from globally sourced parts, these shorts are a must-have for those who demand both style and function in their fitness gear.

  XS S M L XL 2XL
Waist width, in 15.00 16.00 18.00 19.00 21.00 22.00
Hips width, in 17.50 19.00 21.00 22.50 24.00 25.00
Length, in 18.11 20.31 20.98 21.61 22.01 22.52
Inseam length, in 9.05 10.15 10.50 10.80 11.00 11.25

 


/** * Function to move the background of a website like reptile scales. * * @param {string} elementId - The ID of the element to apply the background movement. * @param {number} speed - The speed of the background movement. * @param {number} scale - The scale of the background movement. */ function moveBackgroundLikeReptileScales(elementId, speed, scale) { const element = document.getElementById(elementId); // Check if the element exists if (!element) { console.error(`Element with ID "${elementId}" not found.`); return; } // Set the initial background position let position = 0; // Function to move the background function moveBackground() { // Calculate the new background position position += speed; // Apply the background position element.style.backgroundPosition = `${position}px ${position}px`; // Apply the background scale element.style.transform = `scale(${scale})`; // Request the next animation frame requestAnimationFrame(moveBackground); } // Start the background movement moveBackground(); } // Usage Example // Move the background of the element with ID "background" like reptile scales moveBackgroundLikeReptileScales("background", 2, 1.2);