Fiamma Ducato Boxer Jumper bicycle carrier, 2006 Bicycle carrier with flap for Fiat Ducato, Citroen Jumper, Peugeot Boxer from 2006, version H2 and H3
For transporting 2 bicycles. The structure, thanks to the use of one 35mm Ø aluminum tube, is light and modern, while maintaining the solidity that has always distinguished this model.
The design guarantees quick and safe assembly, also thanks to the new system of attaching the main structure to the mounting beams.
This version allows the rail support base to be installed in three positions, standard, intermediate, New Revised 2020 system Fiamma Carry-Bike is one of the strongest bicycle racks on the market. It is recommended not only by industry experts, but also by experienced camper and caravan enthusiasts.
The new structure guarantees faster and safer assembly, also thanks to the new system of attaching the main structure to the mounting beams.
The black color of the plastic and covers is elegant and matches the vehicle perfectly. This version allows the rail support base to be mounted in three positions, standard, intermediate and lowered, to facilitate loading of bicycles.
In intermediate and lowered positions it is necessary to use a license plate carrier with the License Plate Carrier lighting group.
Specially designed for vans with double rear doors, the Fiamma Carry-Bike 200 DJ Van bike rack can be easily mounted on your Fiat Ducato (H2 and H3) after 06/2006 + van. It can also be installed in the following vehicles:
Peugeot Boxer (H2 and H3) after 06/2006 +
Citroen Jumper / Relay (H2 and H3) after 06/2006 +
There is no drilling or screwing required to attach the rack to the van (as shown in Figure 3), however the manufacturer recommends installing 4 securing screws for additional support.
The rear doors can be opened without removing the bikes, and the rail support base can be mounted in the standard or lower position for easier unloading and loading of bikes.
Included as standard
2 x Pro S D1 bike block
2 x Rail Quick Pro
1 x Security Strap
Fixing rods
Standard mounting brackets
Dimensions: W: 128cm x D: 55cm Maximum weight: 35 kg
Weight: 9 kg
Product Color: Silver - Please note that photos 2-4 are for demonstration purposes only, the bike rack you will receive is shown in photo 1 with new black plastics and covers.
Producer: Fiamma

t.classList.toggle('selected', i === idx));
// read correct data-attribute
const newSrc = thumbnails[idx].getAttribute('data-image-large-src');
mainImage.src = newSrc;
currentIndex = idx;
}
// 3) left arrow click
arrowLeft?.addEventListener('click', () => {
const prev = (currentIndex - 1 + thumbnails.length) % thumbnails.length;
updateMainImage(prev);
});
// 4) right arrow click
arrowRight?.addEventListener('click', () => {
const next = (currentIndex + 1) % thumbnails.length;
updateMainImage(next);
});
// 5) Left/Right key on the keyboard
document.addEventListener('keydown', (event) => {
if (event.key === 'ArrowLeft') {
const prevKey = (currentIndex === 0)
? thumbnails.length - 1
: currentIndex - 1;
updateMainImage(prevKey);
} else if (event.key === 'ArrowRight') {
const nextKey = (currentIndex === thumbnails.length - 1)
? 0
: currentIndex + 1;
updateMainImage(nextKey);
}
});
// 6) initialize first image
updateMainImage(0);
})();