Reprend le fonctionnement du TP Nuisibles : navigation page par page, barre de progression, barre basse avec retour et compteur, badge de phase et modales d'aide. BioCID passe en 7 slides avec champs de notes et export PDF ; FDS passe en 9 slides (code couleur amber/coral/teal) en conservant la logique de quiz et de score. Style harmonisé avec le reste du site.
691 lines
26 KiB
HTML
691 lines
26 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Exercices Pratiques BioCID — Gauthier Chombart & Nathan Chauwin</title>
|
|
<link href="https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="../header-style.css"/>
|
|
<style>
|
|
/* SLIDES */
|
|
.slide {
|
|
position: absolute;
|
|
inset: 0;
|
|
display: none;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 2rem;
|
|
padding-top: calc(70px + 2rem);
|
|
padding-bottom: calc(52px + 2rem);
|
|
opacity: 0;
|
|
transition: opacity 0.4s ease;
|
|
overflow-y: auto;
|
|
min-height: calc(100vh - 70px);
|
|
}
|
|
.slide.active { display: flex; opacity: 1; }
|
|
.slide.fade-in { animation: fadeIn 0.5s ease forwards; }
|
|
@keyframes fadeIn {
|
|
from { opacity: 0; transform: translateY(16px); }
|
|
to { opacity: 1; transform: translateY(0); }
|
|
}
|
|
|
|
.progress-fill { background: var(--amber); transition: width 0.4s ease; }
|
|
|
|
/* PHASE INDICATOR */
|
|
.phase-badge {
|
|
position: fixed;
|
|
top: 80px; right: 16px;
|
|
font-family: 'Syne', sans-serif;
|
|
font-size: 11px;
|
|
font-weight: 700;
|
|
letter-spacing: 0.08em;
|
|
text-transform: uppercase;
|
|
padding: 4px 12px;
|
|
border-radius: 20px;
|
|
z-index: 100;
|
|
}
|
|
|
|
/* BOTTOM BAR */
|
|
.bottom-bar {
|
|
position: fixed;
|
|
bottom: 0; left: 0; right: 0;
|
|
height: 52px;
|
|
background: rgba(250, 238, 218, 0.98);
|
|
border-top: 2px solid var(--amber);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 0 20px;
|
|
z-index: 100;
|
|
backdrop-filter: blur(10px);
|
|
}
|
|
.slide-counter { font-size: 12px; font-family: 'Syne', sans-serif; font-weight: 600; color: var(--amber-dark); }
|
|
.back-btn {
|
|
background: none;
|
|
border: 0.5px solid var(--amber);
|
|
border-radius: 20px;
|
|
padding: 6px 16px;
|
|
font-size: 12px;
|
|
color: var(--amber-dark);
|
|
cursor: pointer;
|
|
transition: all 0.2s;
|
|
font-family: 'DM Sans', sans-serif;
|
|
}
|
|
.back-btn:hover { background: rgba(186,117,23,0.08); }
|
|
|
|
/* BUTTONS */
|
|
.btn {
|
|
font-family: 'Syne', sans-serif;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
padding: 12px 28px;
|
|
border-radius: 40px;
|
|
border: none;
|
|
cursor: pointer;
|
|
transition: all 0.2s;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
text-decoration: none;
|
|
}
|
|
.btn:hover { transform: translateY(-1px); }
|
|
.btn:active { transform: scale(0.98); }
|
|
.btn-amber { background: var(--amber); color: white; }
|
|
.btn-outline { background: transparent; border: 1.5px solid var(--amber); color: var(--amber-dark); }
|
|
|
|
.hint-btn {
|
|
font-family: 'DM Sans', sans-serif;
|
|
font-size: 13px;
|
|
background: var(--amber-light);
|
|
color: var(--amber-dark);
|
|
border: 1px solid rgba(186,117,23,0.2);
|
|
border-radius: 20px;
|
|
padding: 6px 16px;
|
|
cursor: pointer;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
transition: all 0.2s;
|
|
}
|
|
.hint-btn:hover { background: #F5DFB8; }
|
|
|
|
/* QUESTIONS / TASKS */
|
|
.questions-list {
|
|
list-style: none;
|
|
width: 100%;
|
|
max-width: 680px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
padding: 0;
|
|
}
|
|
.q-item {
|
|
background: white;
|
|
border: 0.5px solid var(--border);
|
|
border-radius: 12px;
|
|
padding: 14px 18px;
|
|
font-size: 14px;
|
|
line-height: 1.5;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
gap: 8px;
|
|
}
|
|
.q-item .q-head { display: flex; align-items: flex-start; gap: 12px; }
|
|
.q-num {
|
|
font-family: 'Syne', sans-serif;
|
|
font-size: 11px;
|
|
font-weight: 800;
|
|
min-width: 24px;
|
|
height: 24px;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-top: 1px;
|
|
background: var(--amber-light);
|
|
color: var(--amber-dark);
|
|
}
|
|
.answer-field {
|
|
width: 100%;
|
|
font-family: 'DM Sans', sans-serif;
|
|
font-size: 13.5px;
|
|
color: var(--text);
|
|
background: var(--bg);
|
|
border: 1px solid var(--border);
|
|
border-radius: 10px;
|
|
padding: 10px 14px;
|
|
resize: vertical;
|
|
min-height: 56px;
|
|
line-height: 1.5;
|
|
transition: border-color 0.2s, background 0.2s;
|
|
}
|
|
.answer-field:focus { outline: none; border-color: var(--amber); background: white; }
|
|
|
|
/* HERO / TITLES */
|
|
.hero-label {
|
|
font-family: 'Syne', sans-serif;
|
|
font-size: 11px;
|
|
font-weight: 700;
|
|
letter-spacing: 0.1em;
|
|
text-transform: uppercase;
|
|
color: var(--amber);
|
|
margin-bottom: 8px;
|
|
}
|
|
.hero-title {
|
|
font-family: 'Syne', sans-serif;
|
|
font-size: clamp(34px, 6vw, 64px);
|
|
font-weight: 800;
|
|
line-height: 1.0;
|
|
color: var(--text);
|
|
margin-bottom: 12px;
|
|
}
|
|
.hero-sub {
|
|
font-size: 16px;
|
|
color: var(--text-muted);
|
|
max-width: 460px;
|
|
text-align: center;
|
|
line-height: 1.6;
|
|
margin-bottom: 2rem;
|
|
}
|
|
.section-tag {
|
|
font-family: 'Syne', sans-serif;
|
|
font-size: 11px;
|
|
font-weight: 700;
|
|
letter-spacing: 0.08em;
|
|
text-transform: uppercase;
|
|
padding: 4px 12px;
|
|
border-radius: 20px;
|
|
margin-bottom: 10px;
|
|
display: inline-block;
|
|
background: var(--amber-light);
|
|
color: var(--amber-dark);
|
|
}
|
|
.slide-title {
|
|
font-family: 'Syne', sans-serif;
|
|
font-size: clamp(22px, 3.5vw, 34px);
|
|
font-weight: 800;
|
|
line-height: 1.15;
|
|
margin-bottom: 0.5rem;
|
|
text-align: center;
|
|
}
|
|
.slide-intro {
|
|
font-size: 14px;
|
|
color: var(--text-muted);
|
|
text-align: center;
|
|
max-width: 560px;
|
|
line-height: 1.6;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
.actions-row {
|
|
display: flex;
|
|
gap: 12px;
|
|
align-items: center;
|
|
margin-top: 1.5rem;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
}
|
|
.steps-row { display: flex; gap: 8px; margin-bottom: 1.5rem; flex-wrap: wrap; justify-content: center; }
|
|
.step-pill {
|
|
font-size: 12px; padding: 4px 14px; border-radius: 20px;
|
|
border: 1px solid var(--border); color: var(--text-muted); background: white;
|
|
}
|
|
.step-pill.active-pill { border-color: var(--amber); color: var(--amber-dark); font-weight: 600; }
|
|
|
|
/* RESOURCE / CARDS */
|
|
.resource-card {
|
|
background: white;
|
|
border: 0.5px solid var(--border);
|
|
border-radius: 12px;
|
|
padding: 14px 18px;
|
|
max-width: 560px;
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 14px;
|
|
margin-bottom: 1rem;
|
|
}
|
|
.resource-icon { font-size: 24px; }
|
|
.resource-body { flex: 1; }
|
|
.resource-title { font-size: 13px; font-weight: 500; }
|
|
.resource-sub { font-size: 12px; color: var(--text-muted); }
|
|
.resource-link { font-size: 12px; color: var(--amber); text-decoration: none; font-weight: 500; }
|
|
.resource-link:hover { text-decoration: underline; }
|
|
|
|
.info-card {
|
|
background: var(--amber-light);
|
|
border-radius: 12px;
|
|
padding: 16px 20px;
|
|
max-width: 620px;
|
|
width: 100%;
|
|
font-size: 14px;
|
|
color: var(--amber-dark);
|
|
line-height: 1.6;
|
|
display: flex;
|
|
gap: 10px;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.overview-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 14px;
|
|
max-width: 640px;
|
|
width: 100%;
|
|
margin: 1.5rem 0;
|
|
}
|
|
.overview-card {
|
|
background: white;
|
|
border: 0.5px solid var(--border);
|
|
border-radius: 14px;
|
|
padding: 1.25rem;
|
|
text-align: center;
|
|
}
|
|
.overview-icon { font-size: 28px; margin-bottom: 8px; }
|
|
.overview-title { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; margin-bottom: 4px; }
|
|
.overview-sub { font-size: 12px; color: var(--text-muted); }
|
|
|
|
/* TIPS LIST */
|
|
.tips-list { list-style: none; padding: 0; max-width: 620px; width: 100%; display: flex; flex-direction: column; gap: 8px; }
|
|
.tips-list li {
|
|
background: white;
|
|
border: 0.5px solid var(--border);
|
|
border-radius: 10px;
|
|
padding: 12px 16px 12px 40px;
|
|
position: relative;
|
|
font-size: 13.5px;
|
|
line-height: 1.5;
|
|
color: var(--text-muted);
|
|
}
|
|
.tips-list li::before {
|
|
content: '✓';
|
|
position: absolute;
|
|
left: 16px;
|
|
color: var(--amber);
|
|
font-weight: bold;
|
|
}
|
|
.tips-list strong { color: var(--text); }
|
|
|
|
/* MODAL */
|
|
.modal-overlay {
|
|
position: fixed; inset: 0;
|
|
background: rgba(0,0,0,0.45);
|
|
display: none; align-items: center; justify-content: center;
|
|
z-index: 200; padding: 2rem;
|
|
}
|
|
.modal-overlay.open { display: flex; }
|
|
.modal {
|
|
background: white; border-radius: 20px; padding: 2rem;
|
|
max-width: 480px; width: 100%; position: relative;
|
|
animation: modalIn 0.3s ease;
|
|
}
|
|
@keyframes modalIn {
|
|
from { opacity: 0; transform: scale(0.92) translateY(12px); }
|
|
to { opacity: 1; transform: scale(1) translateY(0); }
|
|
}
|
|
.modal-close {
|
|
position: absolute; top: 16px; right: 16px;
|
|
background: var(--bg); border: none;
|
|
width: 28px; height: 28px; border-radius: 50%;
|
|
cursor: pointer; font-size: 16px;
|
|
display: flex; align-items: center; justify-content: center;
|
|
color: var(--text-muted);
|
|
}
|
|
.modal-icon { font-size: 28px; margin-bottom: 12px; }
|
|
.modal-title { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 10px; }
|
|
.modal-body { font-size: 14px; line-height: 1.7; color: var(--text-muted); }
|
|
.modal-body strong { color: var(--text); }
|
|
|
|
/* SCROLL AREA */
|
|
.scroll-area {
|
|
overflow-y: auto;
|
|
max-height: calc(100vh - 200px);
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 0.5rem 0 4rem;
|
|
}
|
|
.scroll-area::-webkit-scrollbar { width: 4px; }
|
|
.scroll-area::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
|
|
|
|
/* DECO */
|
|
.deco-circle { position: fixed; border-radius: 50%; pointer-events: none; z-index: 0; }
|
|
.slide > * { position: relative; z-index: 1; }
|
|
|
|
@media (max-width: 640px) {
|
|
.overview-grid { grid-template-columns: 1fr; }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<!-- HEADER -->
|
|
<header>
|
|
<div class="logo">Gauthier Chombart & Nathan Chauwin</div>
|
|
<nav>
|
|
<a href="../index.html">Accueil</a>
|
|
<a href="../index.html#formations">Exercices</a>
|
|
<a href="../index.html#documentation">Documentation</a>
|
|
<a href="../index.html#rapports">Rapports</a>
|
|
<a href="../index.html#about">À propos</a>
|
|
<a href="../index.html#contact">Contact</a>
|
|
</nav>
|
|
</header>
|
|
|
|
<!-- Progress bar -->
|
|
<div class="progress-bar"><div class="progress-fill" id="progressFill"></div></div>
|
|
|
|
<!-- Phase badge -->
|
|
<div class="phase-badge" id="phaseBadge" style="display:none"></div>
|
|
|
|
<!-- Bottom bar -->
|
|
<div class="bottom-bar" id="bottomBar" style="display:none;">
|
|
<button class="back-btn" id="backBtn" onclick="goBack()" style="display:none;">← Retour</button>
|
|
<div class="slide-counter" id="slideCounter"></div>
|
|
</div>
|
|
|
|
<!-- Modal -->
|
|
<div class="modal-overlay" id="modalOverlay" onclick="closeModal(event)">
|
|
<div class="modal" id="modal">
|
|
<button class="modal-close" onclick="closeModal()">✕</button>
|
|
<div class="modal-icon" id="modalIcon"></div>
|
|
<div class="modal-title" id="modalTitle"></div>
|
|
<div class="modal-body" id="modalBody"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- ============ SLIDE 0 — ACCUEIL ============ -->
|
|
<div class="slide active fade-in" id="slide-0">
|
|
<div class="deco-circle" style="width:400px;height:400px;background:var(--amber-light);top:-100px;right:-80px;opacity:0.6;"></div>
|
|
<div class="deco-circle" style="width:200px;height:200px;background:var(--amber-light);bottom:60px;left:-60px;opacity:0.5;"></div>
|
|
<div style="text-align:center;">
|
|
<div class="hero-label">Certibiocide — Travaux pratiques</div>
|
|
<div class="hero-title">Plateforme<br>BioCID</div>
|
|
<p class="hero-sub">Maîtrisez la plateforme officielle de l'ANSES pour consulter les produits biocides autorisés et déclarés en France.</p>
|
|
<button class="btn btn-amber" onclick="goTo(1)">Démarrer l'exercice →</button>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- ============ SLIDE 1 — CONTEXTE & ACCÈS ============ -->
|
|
<div class="slide" id="slide-1">
|
|
<div class="deco-circle" style="width:300px;height:300px;background:var(--amber-light);top:-60px;left:-60px;opacity:0.4;"></div>
|
|
<div class="section-tag">Avant de commencer</div>
|
|
<div class="slide-title">Contexte & accès</div>
|
|
<p class="slide-intro">BioCID est la plateforme officielle de l'ANSES pour consulter tous les produits biocides autorisés et déclarés en France. Cet exercice développe votre autonomie dans la consultation des produits.</p>
|
|
<div class="resource-card">
|
|
<div class="resource-icon">🌐</div>
|
|
<div class="resource-body">
|
|
<div class="resource-title">Plateforme BioCID — ANSES</div>
|
|
<div class="resource-sub">Cliquez sur « Rechercher un produit » pour accéder à la base consultable</div>
|
|
</div>
|
|
<a href="https://biocid-anses.fr/biocid" target="_blank" class="resource-link">Ouvrir ↗</a>
|
|
</div>
|
|
<div class="info-card" style="margin-top:0.5rem;">
|
|
<span>🎯</span>
|
|
<div>4 exercices vous attendent : recherche par <strong>nom</strong>, par <strong>type</strong>, par <strong>substance active</strong>, puis un <strong>cas de synthèse</strong>. Durée totale ≈ 30 min.</div>
|
|
</div>
|
|
<button class="btn btn-amber" onclick="goTo(2)" style="margin-top:1.5rem;">Commencer l'exercice 1 →</button>
|
|
</div>
|
|
|
|
<!-- ============ SLIDE 2 — EXERCICE 1 ============ -->
|
|
<div class="slide" id="slide-2">
|
|
<div class="scroll-area">
|
|
<div class="section-tag">Exercice 1 / 4 — 5 min</div>
|
|
<div class="slide-title">Recherche par nom de produit</div>
|
|
<p class="slide-intro">Trouvez un produit spécifique et relevez ses caractéristiques principales.</p>
|
|
<ul class="questions-list">
|
|
<li class="q-item">
|
|
<div class="q-head"><span class="q-num">1</span><span>Recherchez un produit connu (ex. « Goliath », « Phobi », « Soricide »). Notez son <strong>type de produit</strong>, sa <strong>substance active</strong> et son <strong>fabricant</strong>.</span></div>
|
|
<textarea class="answer-field" id="bio_ex1_1" placeholder="Votre réponse…" data-question="Ex1 — Produit : type, substance active, fabricant"></textarea>
|
|
</li>
|
|
<li class="q-item">
|
|
<div class="q-head"><span class="q-num">2</span><span>Vérifiez la <strong>date d'autorisation</strong> du produit.</span></div>
|
|
<textarea class="answer-field" id="bio_ex1_2" placeholder="Votre réponse…" data-question="Ex1 — Date d'autorisation"></textarea>
|
|
</li>
|
|
<li class="q-item">
|
|
<div class="q-head"><span class="q-num">3</span><span>Observez les <strong>conditions d'utilisation</strong> mentionnées (usage professionnel / grand public).</span></div>
|
|
<textarea class="answer-field" id="bio_ex1_3" placeholder="Votre réponse…" data-question="Ex1 — Conditions d'utilisation"></textarea>
|
|
</li>
|
|
</ul>
|
|
<div class="actions-row">
|
|
<button class="hint-btn" onclick="showHint('ex1')">💡 Voir les indications</button>
|
|
<button class="btn btn-amber" onclick="goTo(3)">Exercice suivant →</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- ============ SLIDE 3 — EXERCICE 2 ============ -->
|
|
<div class="slide" id="slide-3">
|
|
<div class="scroll-area">
|
|
<div class="section-tag">Exercice 2 / 4 — 5 min</div>
|
|
<div class="slide-title">Recherche par type de produit</div>
|
|
<p class="slide-intro">Explorez les catégories disponibles à l'aide des filtres par code TP (Type Product).</p>
|
|
<ul class="questions-list">
|
|
<li class="q-item">
|
|
<div class="q-head"><span class="q-num">1</span><span>Utilisez le filtre « Type de produit » et sélectionnez « Rodenticides (TP14) » ou « Insecticides (TP18) ». Combien de produits sont disponibles ?</span></div>
|
|
<textarea class="answer-field" id="bio_ex2_1" placeholder="Votre réponse…" data-question="Ex2 — Nombre de produits dans la catégorie"></textarea>
|
|
</li>
|
|
<li class="q-item">
|
|
<div class="q-head"><span class="q-num">2</span><span>Comparez avec une autre catégorie (ex. Désinfectants TP2 / TP3 / TP4). Que remarquez-vous ?</span></div>
|
|
<textarea class="answer-field" id="bio_ex2_2" placeholder="Votre réponse…" data-question="Ex2 — Comparaison entre catégories"></textarea>
|
|
</li>
|
|
</ul>
|
|
<div class="actions-row">
|
|
<button class="hint-btn" onclick="showHint('ex2')">💡 Voir les indications</button>
|
|
<button class="btn btn-amber" onclick="goTo(4)">Exercice suivant →</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- ============ SLIDE 4 — EXERCICE 3 ============ -->
|
|
<div class="slide" id="slide-4">
|
|
<div class="scroll-area">
|
|
<div class="section-tag">Exercice 3 / 4 — 5 min</div>
|
|
<div class="slide-title">Recherche par substance active</div>
|
|
<p class="slide-intro">Trouvez tous les produits partageant une même substance active.</p>
|
|
<ul class="questions-list">
|
|
<li class="q-item">
|
|
<div class="q-head"><span class="q-num">1</span><span>Recherchez une substance active (ex. « Brodifacoum », « Perméthrine ») et listez au minimum <strong>3 produits</strong> différents qui la contiennent.</span></div>
|
|
<textarea class="answer-field" id="bio_ex3_1" placeholder="Votre réponse…" data-question="Ex3 — 3 produits contenant la substance"></textarea>
|
|
</li>
|
|
<li class="q-item">
|
|
<div class="q-head"><span class="q-num">2</span><span>Différents fabricants proposent-ils des formulations variées ? Comparez les <strong>concentrations</strong> d'un produit à l'autre.</span></div>
|
|
<textarea class="answer-field" id="bio_ex3_2" placeholder="Votre réponse…" data-question="Ex3 — Formulations et concentrations comparées"></textarea>
|
|
</li>
|
|
</ul>
|
|
<div class="actions-row">
|
|
<button class="hint-btn" onclick="showHint('ex3')">💡 Voir les indications</button>
|
|
<button class="btn btn-amber" onclick="goTo(5)">Cas de synthèse →</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- ============ SLIDE 5 — EXERCICE 4 (CAS DE SYNTHÈSE) ============ -->
|
|
<div class="slide" id="slide-5">
|
|
<div class="scroll-area">
|
|
<div class="section-tag" style="background:var(--coral-light);color:var(--coral);">Exercice 4 / 4 — Cas de synthèse</div>
|
|
<div class="slide-title">Mise en situation réelle</div>
|
|
<div class="info-card" style="background:var(--coral-light);color:var(--coral);margin-bottom:1rem;">
|
|
<span>📞</span>
|
|
<div>Un restaurant vous appelle pour une demande de produit. En utilisant BioCID, présentez une <strong>recommandation argumentée</strong>.</div>
|
|
</div>
|
|
<ul class="questions-list">
|
|
<li class="q-item">
|
|
<div class="q-head"><span class="q-num" style="background:var(--coral-light);color:var(--coral);">1</span><span>Filtrez par type : « Désinfectants (TP2/TP3/TP4) » ou « Lutte contre les nuisibles (TP14/TP18/TP20) ». Identifiez au minimum <strong>3 produits applicables</strong>.</span></div>
|
|
<textarea class="answer-field" id="bio_ex4_1" placeholder="Votre réponse…" data-question="Ex4 — 3 produits applicables"></textarea>
|
|
</li>
|
|
<li class="q-item">
|
|
<div class="q-head"><span class="q-num" style="background:var(--coral-light);color:var(--coral);">2</span><span>Pour chacun, relevez : <strong>nom, fabricant, substance active, usage spécifique</strong>.</span></div>
|
|
<textarea class="answer-field" id="bio_ex4_2" placeholder="Votre réponse…" data-question="Ex4 — Fiche de chaque produit"></textarea>
|
|
</li>
|
|
<li class="q-item">
|
|
<div class="q-head"><span class="q-num" style="background:var(--coral-light);color:var(--coral);">3</span><span>Proposez un court <strong>argumentaire</strong> pour chaque produit. <em>Bonus :</em> recherchez les FDS associées.</span></div>
|
|
<textarea class="answer-field" id="bio_ex4_3" placeholder="Votre réponse…" data-question="Ex4 — Argumentaire (+ bonus FDS)"></textarea>
|
|
</li>
|
|
</ul>
|
|
<div class="actions-row">
|
|
<button class="btn btn-amber" onclick="goTo(6)">Voir les bonnes pratiques →</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- ============ SLIDE 6 — ASTUCES / FIN ============ -->
|
|
<div class="slide" id="slide-6">
|
|
<div class="scroll-area">
|
|
<div class="deco-circle" style="width:320px;height:320px;background:var(--amber-light);bottom:-80px;right:-60px;opacity:0.5;"></div>
|
|
<div style="text-align:center;">
|
|
<div style="font-size:44px;margin-bottom:0.5rem;">🎉</div>
|
|
<div class="section-tag">Exercice terminé</div>
|
|
<div class="slide-title" style="margin-top:0.4rem;">Astuces & bonnes pratiques</div>
|
|
</div>
|
|
<ul class="tips-list" style="margin-top:1.25rem;">
|
|
<li>Combinez plusieurs filtres pour affiner (<strong>type + substance + fabricant</strong>).</li>
|
|
<li>Consultez toujours les <strong>fiches de sécurité (FDS)</strong> avant toute recommandation.</li>
|
|
<li>Vérifiez les conditions d'utilisation : <strong>usage professionnel vs. domestique</strong>.</li>
|
|
<li>BioCID est mis à jour régulièrement (nouvelles autorisations et retraits).</li>
|
|
<li>En cas de doute, contactez l'ANSES ou consultez un expert en biocides.</li>
|
|
<li>Notez toujours les références exactes pour la traçabilité (<strong>numéro d'AMM</strong>).</li>
|
|
</ul>
|
|
<div class="actions-row">
|
|
<button class="btn btn-amber" onclick="exporterPDF()">⬇ Télécharger mes réponses (PDF)</button>
|
|
<a href="https://biocid-anses.fr/biocid" target="_blank" class="btn btn-outline">biocid-anses.fr ↗</a>
|
|
</div>
|
|
<div class="actions-row" style="margin-top:0.5rem;">
|
|
<button class="btn btn-outline" onclick="restartAll()">↺ Recommencer</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
let currentSlide = 0;
|
|
let history = [];
|
|
const totalSlides = 6;
|
|
|
|
const hints = {
|
|
ex1: {
|
|
icon: '🔎',
|
|
title: 'Indications — Recherche par nom',
|
|
body: `Cherchez dans la <strong>zone de texte principale</strong>. Les résultats affichent le nom du produit, le fabricant et la substance active.<br><br>C'est généralement le chemin le plus rapide pour localiser un produit connu.`
|
|
},
|
|
ex2: {
|
|
icon: '🗂️',
|
|
title: 'Indications — Recherche par type',
|
|
body: `Les filtres se trouvent dans un <strong>menu latéral</strong> ou en haut de la page. Les types de produits correspondent aux <strong>codes TP</strong> (Type Product).<br><br>Les rodenticides (TP14) et insecticides (TP18) sont souvent parmi les catégories les plus représentées.`
|
|
},
|
|
ex3: {
|
|
icon: '🧪',
|
|
title: 'Indications — Recherche par substance',
|
|
body: `Cherchez dans la zone <strong>« Substance active »</strong> si elle existe.<br><br>Une même substance active peut être formulée différemment selon les fabricants (poudre, granulé, liquide, etc.) et à des <strong>concentrations variables</strong>.`
|
|
}
|
|
};
|
|
|
|
function goTo(n) {
|
|
const cur = document.getElementById('slide-' + currentSlide);
|
|
const next = document.getElementById('slide-' + n);
|
|
if (!next) return;
|
|
history.push(currentSlide);
|
|
cur.classList.remove('active', 'fade-in');
|
|
cur.style.display = 'none';
|
|
currentSlide = n;
|
|
next.style.display = 'flex';
|
|
setTimeout(() => next.classList.add('active', 'fade-in'), 10);
|
|
const sa = next.querySelector('.scroll-area');
|
|
if (sa) sa.scrollTop = 0;
|
|
updateUI();
|
|
}
|
|
|
|
function goBack() {
|
|
if (history.length === 0) return;
|
|
const prev = history.pop();
|
|
const cur = document.getElementById('slide-' + currentSlide);
|
|
const target = document.getElementById('slide-' + prev);
|
|
cur.classList.remove('active', 'fade-in');
|
|
cur.style.display = 'none';
|
|
currentSlide = prev;
|
|
target.style.display = 'flex';
|
|
setTimeout(() => target.classList.add('active', 'fade-in'), 10);
|
|
updateUI();
|
|
}
|
|
|
|
function updateUI() {
|
|
document.getElementById('progressFill').style.width =
|
|
currentSlide === 0 ? '0%' : ((currentSlide / totalSlides) * 100) + '%';
|
|
const counter = document.getElementById('slideCounter');
|
|
counter.textContent = currentSlide === 0 ? '' : currentSlide + ' / ' + totalSlides;
|
|
document.getElementById('bottomBar').style.display = currentSlide === 0 ? 'none' : 'flex';
|
|
document.getElementById('backBtn').style.display = history.length > 0 ? 'block' : 'none';
|
|
|
|
const badge = document.getElementById('phaseBadge');
|
|
if (currentSlide >= 2 && currentSlide <= 5) {
|
|
badge.style.display = 'block';
|
|
if (currentSlide === 5) {
|
|
badge.style.background = 'var(--coral-light)';
|
|
badge.style.color = 'var(--coral)';
|
|
badge.textContent = 'Cas de synthèse';
|
|
} else {
|
|
badge.style.background = 'var(--amber-light)';
|
|
badge.style.color = 'var(--amber-dark)';
|
|
badge.textContent = 'Exercice ' + (currentSlide - 1) + ' / 4';
|
|
}
|
|
} else {
|
|
badge.style.display = 'none';
|
|
}
|
|
}
|
|
|
|
function showHint(key) {
|
|
const h = hints[key];
|
|
if (!h) return;
|
|
document.getElementById('modalIcon').textContent = h.icon;
|
|
document.getElementById('modalTitle').textContent = h.title;
|
|
document.getElementById('modalBody').innerHTML = h.body;
|
|
document.getElementById('modalOverlay').classList.add('open');
|
|
}
|
|
function closeModal(e) {
|
|
if (!e || e.target === document.getElementById('modalOverlay') || e.target.classList.contains('modal-close')) {
|
|
document.getElementById('modalOverlay').classList.remove('open');
|
|
}
|
|
}
|
|
document.addEventListener('keydown', e => { if (e.key === 'Escape') closeModal(); });
|
|
|
|
function restartAll() {
|
|
history = [];
|
|
document.querySelectorAll('.slide').forEach(s => { s.classList.remove('active', 'fade-in'); s.style.display = 'none'; });
|
|
currentSlide = 0;
|
|
const first = document.getElementById('slide-0');
|
|
first.style.display = 'flex';
|
|
setTimeout(() => first.classList.add('active', 'fade-in'), 10);
|
|
updateUI();
|
|
}
|
|
|
|
function escapeHtml(str) {
|
|
if (!str) return '';
|
|
return str.replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>');
|
|
}
|
|
|
|
function exporterPDF() {
|
|
const reponses = [];
|
|
document.querySelectorAll('.answer-field').forEach(el => {
|
|
reponses.push({ question: el.dataset.question || '', reponse: el.value.trim() });
|
|
});
|
|
const w = window.open('', '_blank');
|
|
const lignes = reponses.map(r =>
|
|
`<div style="margin-bottom:14px;"><strong>${escapeHtml(r.question)}</strong><p style="margin:4px 0 0;white-space:pre-wrap;">${escapeHtml(r.reponse) || '<em>(sans réponse)</em>'}</p></div>`
|
|
).join('');
|
|
w.document.write(`
|
|
<html><head><meta charset="utf-8"><title>Exercices BioCID — Réponses</title>
|
|
<style>
|
|
body { font-family: Arial, sans-serif; padding: 30px; color: #1a1a18; }
|
|
h1 { font-size: 20px; border-bottom: 2px solid #BA7517; padding-bottom: 8px; }
|
|
</style></head>
|
|
<body><h1>Exercices Pratiques BioCID</h1>${lignes}</body></html>`);
|
|
w.document.close();
|
|
setTimeout(() => w.print(), 300);
|
|
}
|
|
|
|
updateUI();
|
|
</script>
|
|
</body>
|
|
</html>
|