Vision Control

Le prix initial était : 130,00 €.Le prix actuel est : 100,00 €.

/* Base page */ .tp-page { font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; max-width: 1100px; margin: 0 auto; padding: 0 20px; line-height: 1.6; color: #222; } .tp-h2 { font-size: 22px; font-weight: 700; margin: 28px 0 14px; color: #0b1b21; border-bottom: 2px solid #0b6b7a; padding: 10px 14px; border-radius: 4px; background: #f8fafc; } .tp-list { margin: 0; padding-left: 20px; } .tp-badges { display: flex; gap: 8px; flex-wrap: wrap; margin: 10px 0; } .tp-badge { background: #0b6b7a; color: #fff; font-size: 12px; padding: 6px 10px; border-radius: 999px; } /* Sommaire */ .tp-toc { background: #F3F5F7; border-top: 3px solid #0b6b7a; padding: 12px 14px; margin:…

Category:

Description

/* Base page */
.tp-page { font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; max-width: 1100px; margin: 0 auto; padding: 0 20px; line-height: 1.6; color: #222; }
.tp-h2 { font-size: 22px; font-weight: 700; margin: 28px 0 14px; color: #0b1b21; border-bottom: 2px solid #0b6b7a; padding: 10px 14px; border-radius: 4px; background: #f8fafc; }
.tp-list { margin: 0; padding-left: 20px; }
.tp-badges { display: flex; gap: 8px; flex-wrap: wrap; margin: 10px 0; }
.tp-badge { background: #0b6b7a; color: #fff; font-size: 12px; padding: 6px 10px; border-radius: 999px; }

/* Sommaire */
.tp-toc { background: #F3F5F7; border-top: 3px solid #0b6b7a; padding: 12px 14px; margin: 16px 0; }
.tp-toc ul { margin: 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 12px; }
.tp-toc a { color: #000; text-decoration: none; font-size: 13px; white-space: nowrap; }

/* Grids */
.tp-specs { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; }
.tp-card { background: #F3F5F7; border-radius: 10px; padding: 12px; }

/* NOTES SUR 10 */
.tp-notes-wrap { margin: 18px 0 8px; }
.tp-notes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.tp-note { background: #F3F5F7; border-radius: 10px; padding: 10px 12px; }
.tp-note-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; font-weight: 600; }
.tp-bar { height: 8px; background: #E5E9EF; border-radius: 999px; overflow: hidden; }
.tp-bar-fill { height: 100%; width: 0%; transition: width 0.6s ease, background 0.3s ease; }

@media (max-width: 640px) {
.tp-notes-grid { grid-template-columns: 1fr; }
}

À retenir
Précision
Confort
Finition sable
  • Forme ronde orientée contrôle – tolérante et stable sur les frappes décentrées.
  • Toucher confortable grâce au noyau EVA Black Touch 13-15.
  • Idéal débutants à intermédiaires cherchant la régularité.

Caractéristiques
Finition

  • Texture sable pour l’accroche des effets.
  • Perçage 68 trous optimisé.
Cadre et faces

  • Cadre twin‑tube, renfort carbone 30%.
  • Faces en fibre de verre.
Noyau

  • EVA Black Touch 13‑15 (équilibre confort/contrôle).

Technologies
  • Stabilisation du cadre pour limiter les torsions à l’impact.
  • Sweet spot centré et large pour plus de tolérance.
  • Peinture micro‑sable pour une accroche progressive.

Pour qui
  • Niveau : débutant à intermédiaire visant la précision et la régularité.
  • Style : jeu posé, défenses propres, contre‑attaques maîtrisées.

Poids et équilibre
  • Poids moyen : 355‑370 g.
  • Équilibre : 250 ± 10 mm.

Composition
  • Cadre : fibre de verre avec renfort carbone 30%.
  • Faces : fibre de verre.
  • Noyau : mousse EVA Black Touch 13‑15.

Notes sur 10

Contrôle : 8.5 / 10
Puissance : 6 / 10
Maniabilité : 8 / 10
Effets : 7 / 10

Entretien
  • Éviter les chocs sur cadres et sols abrasifs – ranger à l’abri de la chaleur.
  • Surgrip : contrôler l’usure, remplacer pour garder l’adhérence.
  • Nettoyage : chiffon doux légèrement humide, sans solvants.

// Dégradé selon la note (vert -> jaune -> orange -> rouge)
function gradientFor(score) {
if (score >= 9.5) {
return ‘linear-gradient(90deg, #eab308 0%, #f97316 70%, #ef4444 100%)’;
} else if (score >= 9) {
return ‘linear-gradient(90deg, #84cc16 0%, #eab308 50%, #f97316 100%)’;
} else if (score >= 8.5) {
return ‘linear-gradient(90deg, #22c55e 0%, #84cc16 50%, #eab308 100%)’;
} else if (score >= 8) {
return ‘linear-gradient(90deg, #22c55e 0%, #84cc16 70%, #eab308 100%)’;
} else if (score >= 7) {
return ‘linear-gradient(90deg, #22c55e 0%, #84cc16 100%)’;
} else if (score >= 6) {
return ‘linear-gradient(90deg, #22c55e 0%, #84cc16 100%)’;
} else if (score >= 4) {
return ‘linear-gradient(90deg, #22c55e 0%, #84cc16 80%)’;
} else {
return ‘linear-gradient(90deg, #84cc16 0%, #eab308 60%, #f97316 100%)’;
}
}

// Remplit les barres depuis data-score (0 à 10, décimales OK) + accessibilité
document.querySelectorAll(‘#tp-notes .tp-note’).forEach(function (el) {
var raw = el.getAttribute(‘data-score’) || ‘0’;
var s = Math.max(0, Math.min(10, Number(raw)));
var bar = el.querySelector(‘.tp-bar’);
var fill = el.querySelector(‘.tp-bar-fill’);
var scoreSpan = el.querySelector(‘.tp-score’);
if (!bar || !fill) return;

fill.style.width = (s * 10) + ‘%’;
fill.style.background = gradientFor(s);
bar.setAttribute(‘aria-valuenow’, String(s));
if (scoreSpan) scoreSpan.textContent = (Number.isInteger(s) ? s : s.toString()) + ‘ / 10’;
});

Avis

Il n’y a pas encore d’avis.

Soyez le premier à laisser votre avis sur “Vision Control”

Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

Produits similaires