diff options
Diffstat (limited to 'sysml.html')
-rw-r--r-- | sysml.html | 36 |
1 files changed, 32 insertions, 4 deletions
@@ -11,6 +11,20 @@ <title>Robot-cable by NeodarZ</title>
</head>
+<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
+ <script>
+ jQuery(document).ready(function(){
+ $(window).scroll(function () {
+ var rupture = $('header').outerHeight() ;
+ if( $(window).scrollTop() > rupture ) {
+ $('#menu').addClass('fixed');
+ } else {
+ $('#menu').removeClass('fixed');
+ }
+ });
+});
+ </script>
+
<body>
<header>
@@ -18,20 +32,28 @@ <h1>Robot-cable</h1>
<h2>Projet du lycée Eugène Livet (Nantes, France) sur la conception d'un robot-câble avec Arduino et Processing</h2>
+ <div align="center">
<section id="downloads">
<a href="https://github.com/NeodarZ/Robot-Cable/zipball/master" class="btn">Download as .zip</a>
<a href="https://github.com/NeodarZ/Robot-Cable/tarball/master" class="btn">Download as .tar.gz</a>
<a href="https://github.com/NeodarZ/Robot-Cable" class="btn btn-github"><span class="icon"></span>View on GitHub</a>
</section>
+ </div>
</div>
</header>
+ <div align="center" id="menu_fix">
+ <div id="menu">
+ <div id="menu_btn">
+ <a href="index.html" class="btn">Accueil</a>
+ <a href="sysml.html" class="btn_actuel">SySML</a>
+ <a href="plateforme-c.html" class="btn">Plateforme C</a>
+ <a href="irccyn.html" class="btn">IRCCYN</a>
+ </div>
+ </div>
+ </div>
<div class="container">
<section id="main_content">
- <a href="index.html" class="btn">Accueil</a>
- <a href="sysml.html" class="btn_actuel">SySML</a>
- <a href="plateforme-c.html" class="btn">Plateforme C</a>
- <a href="irccyn.html" class="btn">IRCCYN</a>
<br />
<br />
@@ -41,6 +63,12 @@ <p>Il permet la spécification, l'analyse, la conception, la vérification et la validation de nombreux sytèmes.</p>
<p>Source : <a href="https://fr.wikipedia/wiki/Systems_Modelin_Language/" class="user-mention">@Wikipédia</a></p>
+<h3>
+<a id="welcome-to-github-pages" class="anchor" href="#welcome-to-github-pages" aria-hidden="true"><span class="octicon octicon-link"></span></a>Diagrammes SySML du projet :</h3>
+
+<p>Diagramme du cas d'utilisation :</p>
+<img src="Diagramme_de_cas_d'utilisation.png"></img>
+
<br />
<p style="text-align: center;">•?((¯°·._.• <a href="https://github.com/NeodarZ" class="user-mention">@NeodarZ</a> •._.·°¯))؟•</p>
|