Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
Eaielectronic authored Nov 7, 2024
1 parent 377b00f commit db61e00
Showing 1 changed file with 19 additions and 9 deletions.
28 changes: 19 additions & 9 deletions Cours/JSON/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,14 @@
<h1>Introduction à JSON (JavaScript Object Notation)</h1>
<p>Comprendre et manipuler JSON dans vos applications.</p>
</header>

<script>
function toggleSidebar() {
const sidebar = document.getElementById('sidebar');
const content = document.getElementById('main-content');
sidebar.classList.toggle('active');
content.classList.toggle('shifted');
}
</script>
<div class="container">

<section id="objectifs">
Expand Down Expand Up @@ -239,14 +246,17 @@ <h3>4.3 En Python</h3>
</code>
</section>
<section>
<div class="sidebar">
<h2>Lignes de code</h2>
<a href="#ajout-modification">1. Ajout et modification</a>
<a href="#suppression">2. Suppression de clés</a>
<a href="#recherche">3. Recherche de clés et valeurs</a>
<a href="#parcours">4. Parcours des clés et valeurs</a>
<a href="#conversion">5. Conversion JSON et String</a>
</div>
<button class="toggle-btn" onclick="toggleSidebar()">☰ Menu</button>

<!-- Sidebar -->
<div class="sidebar" id="sidebar">
<h2>Lignes de code</h2>
<a href="#ajout-modification">1. Ajout et modification</a>
<a href="#suppression">2. Suppression de clés</a>
<a href="#recherche">3. Recherche de clés et valeurs</a>
<a href="#parcours">4. Parcours des clés et valeurs</a>
<a href="#conversion">5. Conversion JSON et String</a>
</div>
<div class="container">
<h1>Manipulation de JSON en JavaScript et Python</h1>

Expand Down

0 comments on commit db61e00

Please sign in to comment.