Pick a scale to see the weight and dimensions of the Speedster paddles:
Size | Surface | Max Width | Diameter ⌀ | Weight |
---|---|---|---|---|
76 | 490cm² | 16cm | 29mm | 425g |
81 | 522cm² | 16.5cm | 29mm | 435g |
86 | 555cm² | 17.2cm | 29mm | 450g |
76 RDM | 490cm² | 16cm | 26mm | 415g |
81 RDM | 522cm² | 16.3cm | 26mm | 425g |
86 RDM | 555cm² | 17.2cm | 26mm | 440g |
.custom-table-wrapper {
width: 100%;
overflow-x: auto;
background: #ffffff;
padding: 20px;
box-sizing: border-box;
}
.toggle-wrapper {
display: flex;
align-items: center;
justify-content: center;
gap: 15px;
margin-bottom: 20px;
}
.toggle-button {
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
background-color: #f0f0f0;
border: none;
color: #000;
width: 100px;
text-align: center;
}
.toggle-button.active {
background-color: #000;
color: #fff;
}
.custom-table {
width: 100%;
border-collapse: collapse;
font-family: Arial, sans-serif;
color: #000;
}
.custom-table th, .custom-table td {
border: 1px solid #ddd;
padding: 10px;
text-align: center;
}
.custom-table th {
background-color: #f0f0f0;
font-weight: bold;
}
.custom-table td {
font-weight: normal;
}
@media (max-width: 768px) {
.custom-table-wrapper {
padding: 10px;
}
.custom-table th, .custom-table td {
padding: 6px; /* Reduced padding for mobile */
}
}
function toggleMeasurement(unit) {
const rows = document.querySelectorAll('#measurement-table tbody tr td');
rows.forEach(row => {
if (row.hasAttribute(`data-${unit}`)) {
row.innerText = row.getAttribute(`data-${unit}`);
}
});
// Set the active state on the buttons
document.getElementById('metric-button').classList.toggle('active', unit === 'metric');
document.getElementById('imperial-button').classList.toggle('active', unit === 'imperial');
}
// Initialize with metric by default
document.addEventListener('DOMContentLoaded', function() {
toggleMeasurement('metric');
});