DK Sprinter 24″ Cruiser BMX Bike (21.75″ Toptube) (Smoke)
Original price was: $699.99.$210.00Current price is: $210.00.
Description
DK Sprinter 24″ Cruiser BMX Bike Description:
The DK Sprinter 24″ Cruiser BMX Bike is an opportunity to keep racing and riding for those who are no longer comfortable on a 20″ wheel bike. By utilizing 24″ wheels, tall riders are able to comfortably ride a bike. The DK Sprinter Cruiser will let you go as hard as you want with it rocking a 6061 aluminum frame, 100% chromoly forks with tapered legs, fully sealed bearings all around, 2 piece cranks, and double wall rims. Don’t stop racing just because 20″ bikes are too small and let the DK Sprinter 24″ Cruiser keep you in the race.
Specifications:
- Frame: 6061 Aluminum, 3D Dropouts, Internal Cable Routing
- Fork: 100% Chromoly, Tapered Legs
- Headset: Sealed Integrated
- Stem: Alloy Top Load (50mm Reach)
- Bars: 100% Chromoly (6.5″ Rise)
- Grips: DK Tsuka, Press-In Bar Ends
- Cranks: Forged Alloy, 2-Piece (175mm Length)
- Bottom Bracket: Sealed European, External (Outboard) (24mm)
- Pedals: DK Blender PC Platform
- Chainring: Alloy, 4-Bolt Chainring (40 Tooth)
- Chain: KMC Z-610 (3/32″)
- Front Hub: DK, Alloy, Fully Sealed, Chromoly Axle (3/8″ Axle)
- Rear Hub: DK, Alloy, Fully Sealed, Cassette, Chromoly Axle (3/8″ Axle)
- Cog: 17 Tooth
- Front Rim: Alloy, Double Wall (36 Hole)
- Rear Rim: Alloy, Double Wall (36 Hole)
- Front Tire: Arisun XLR8 (24 x 1.75″)
- Rear Tire: Arisun XLR8 (24 x 1.75″)
- Seat: DK Pro 1-Piece (Combo)
- Seat Post: Alloy (Combo) (27.2mm)
- Seat Clamp: Alloy
- Brake Lever: Alloy
- Brakes: Alloy Pro Linear V-Brake
- Extras: N/A
- Color: Smoke
- Weight: 22.7 lbs
Geometry:
- Toptube Length: 21.75″
- Chainstay Length: 15.25″
- Headtube Angle: 73°
- Seattube Angle: 72°
- Bottom Bracket Height: –
- Standover: –
- Recommended Sizing Guide: 5′ 9″+ Rider Height
Before You Hit The Track:
Fly Racing Rayce Repeat Full Face Helmet
View Item
Tubolito Tubo 20″ BMX Inner Tube
View Item
Box Two Number Plate
View Item
Dan’s Comp Stickers BMX Numbers
View Item
Fly Racing Rayce Bicycle Jersey
View Item
Fly Racing F-16 Gloves
View Item
Fly Racing Rayce Bicycle Pants
View Item
Topeak JoeBlow Sport III Floor Pump
View Item
Answer BMX Power Booster Senior Pedals
View Item
Fly Racing Carry-On Duffle
View Item
document.addEventListener("DOMContentLoaded", function() { // Select all elements with the class 'recommended-accessory-marketing-price' const priceElements = document.querySelectorAll('.recommended-accessory-marketing-price');
priceElements.forEach(function(priceElement) { const hasStrikethrough = priceElement.querySelector('s');
if (!hasStrikethrough) { const marketingDiv = priceElement.closest('.recommended-accessory-marketing'); const button = marketingDiv.querySelector('.recommended-accessory-marketing-button'); const productLink = marketingDiv.querySelector('a[href]');
if (button && productLink) {
button.textContent = "View Item"; button.href = productLink.href; button.removeAttribute('onclick'); button.style.backgroundColor = '#464647'; button.style.color = '#fff'; button.style.border = '1px solid #464647'; } } }); });
document.addEventListener("DOMContentLoaded", () => { const titles = document.querySelectorAll(".recommended-accessory-marketing-title"); titles.forEach(title => { if (title.textContent.length > 100) { title.textContent = title.textContent.slice(0, 100); } }); });
function cleanImageSrcSmall() { // Get all img elements on the page const smallImages = document.querySelectorAll('img');
// Loop through each img element smallImages.forEach((img) => { const src = img.getAttribute('src');
// Check if the src contains the unwanted path and remove it if (src.includes('cdn-cgi/image/f=auto,width=200/')) { const cleanedSrcSmall = src.replace('cdn-cgi/image/f=auto,width=200/', ''); img.setAttribute('src', cleanedSrcSmall); } }); }
document.addEventListener('DOMContentLoaded', cleanImageSrcSmall);
document.addEventListener("DOMContentLoaded", function () { const MOBILE_BREAKPOINT = 598;
function updateControls(carousel, currentIndex) { const prevButton = carousel.querySelector('.prev'); const nextButton = carousel.querySelector('.next'); const scrollContainer = carousel.querySelector('.scroll-container'); const totalItems = scrollContainer.querySelectorAll('.scroll-item').length;
prevButton.style.display = currentIndex === 0 ? 'none' : 'block'; nextButton.style.display = currentIndex === totalItems - 1 ? 'none' : 'block'; }
function scrollNext(carousel) { const scrollContainer = carousel.querySelector('.scroll-container'); const scrollItem = scrollContainer.querySelector('.scroll-item'); let currentIndex = parseInt(carousel.getAttribute('data-current-index'), 10) || 0;
if (scrollItem && currentIndex < scrollContainer.children.length - 1) { scrollContainer.scrollLeft += scrollItem.clientWidth; currentIndex++; } carousel.setAttribute('data-current-index', currentIndex); updateControls(carousel, currentIndex); } function scrollPrev(carousel) { const scrollContainer = carousel.querySelector('.scroll-container'); const scrollItem = scrollContainer.querySelector('.scroll-item'); let currentIndex = parseInt(carousel.getAttribute('data-current-index'), 10) || 0; if (scrollItem && currentIndex > 0) { scrollContainer.scrollLeft -= scrollItem.clientWidth; currentIndex--; }
carousel.setAttribute('data-current-index', currentIndex); updateControls(carousel, currentIndex); }
function onScroll(carousel) { const scrollContainer = carousel.querySelector('.scroll-container'); const scrollItem = scrollContainer.querySelector('.scroll-item'); if (!scrollItem) return;
const scrollLeft = scrollContainer.scrollLeft; const itemWidth = scrollItem.clientWidth; const currentIndex = Math.round(scrollLeft / itemWidth);
carousel.setAttribute('data-current-index', currentIndex); updateControls(carousel, currentIndex); }
function initializeCarousel(carousel) { const scrollContainer = carousel.querySelector('.scroll-container'); const prevButton = carousel.querySelector('.prev'); const nextButton = carousel.querySelector('.next');
prevButton.addEventListener('click', function () { scrollPrev(carousel); });
nextButton.addEventListener('click', function () { scrollNext(carousel); });
scrollContainer.addEventListener('scroll', function () { onScroll(carousel); });
carousel.setAttribute('data-current-index', 0); updateControls(carousel, 0); }
const carousels = document.querySelectorAll('._carousel'); carousels.forEach(initializeCarousel);
window.addEventListener('resize', function () { carousels.forEach(function (carousel) { const currentIndex = parseInt(carousel.getAttribute('data-current-index'), 10) || 0; updateControls(carousel, currentIndex); }); }); });
For assistance building your new bike, please check out our tech help section here for instructions and tips on how to build your bike to ensure it is safe.
A new race bike calls for a matching helmet to complete the look. Browse our selection of full face race helmets here.
Need help finding the right bike for you? Not sure what size would suit you best? Check out our BMX buyers guide video below!
Note: To ensure that every component on your bicycle is working properly, Dan’s Comp recommends that all bikes be assembled by a qualified mechanic. Improper assembly of your bicycle may lead to premature wear or failure of individual components such as headsets, crank assembly and wheels. Failure to do so may void the manufacturer warranty.
This product was added to our catalog on August 15, 2025













