1
0
Fork 0

Initial commit

This commit is contained in:
KEZEL BENOIT p1907091 2019-11-20 11:09:01 +01:00
commit 6642d961fb
26 changed files with 756 additions and 0 deletions

0
Eclypsia Normal file
View file

BIN
Images/Produits/avatarF.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

BIN
Images/Produits/avatarH.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

BIN
Images/Produits/loupe.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

BIN
Images/Produits/nao.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 MiB

BIN
Images/Produits/pepper.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 MiB

BIN
Images/Produits/pouce.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 156 KiB

BIN
Images/Produits/r2d2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 226 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 144 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 301 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 175 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

BIN
Images/cart.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

BIN
Images/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

62
checkout.html Normal file
View file

@ -0,0 +1,62 @@
<!DOCTYPE html>
<html lang="fr" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>Kyflo</title>
<link rel="stylesheet" type="text/css" href="css.css">
</head>
<body id="produit">
<nav>
<a href="index.html"><img src="Images/logo.png" alt></a>
<a href="checkout.html"><img id="panier" src="Images/cart.png" alt></a>
<a href="search_result.html"><img id ="loupe" src="Images/Produits/loupe.png" alt></a>
</nav>
<table>
<tr>
<th>Nom Produit</th><th>Quantité</th><th>Prix</th>
</tr>
<tr>
<td>R2D2</td><td><input type="number" value="2"></td><td>500 €</td>
</tr>
<tr>
<td>Nao</td><td><input type="number" value="1"></td><td>5 000€</td>
</tr>
<tr>
<td id="total" COLSPAN=3>TOTAL : 6 000€</td>
</tr>
</table>
<div id="livraison">
<h1>Coordonnées de livraison :</h1>
<form action="commande.html">
<h1>Nom et prénom :</h1>
<input type="text" required>
<h1>Adresse ligne 1 :</h1>
<input type="text" placeholder="Rue, voie, boite postale, nom de société" required>
<h1>Adresse ligne 2 :</h1>
<input type="text" placeholder="Batiment, Etage, Lieu-Dit">
<h1>Ville :</h1>
<input type="text" required>
<h1>État / Région / Canton :</h1>
<input type="text" required>
<h1>Code postal :</h1>
<input type="text" required>
<h1>Numéro de téléphone :</h1>
<input type="tel" required>
<h1>Valider:</h1>
<input type="submit" value="Payer">
</form>
</div>
</body>
</html>

22
commande.html Normal file
View file

@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="fr" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>Kyflo</title>
<link rel="stylesheet" type="text/css" href="css.css">
</head>
<body>
<nav>
<a href="index.html"><img src="Images/logo.png" alt></a>
<a href="checkout.html"><img id="panier" src="Images/cart.png" alt></a>
<a href="search_result.html"><img id ="loupe" src="Images/Produits/loupe.png" alt></a>
</nav>
<div id="Merci">
<h1>Merci beaucoup d'avoir commmander sur notre site ! Votre commande arrive bientôt !</h1>
<img src="Images/Produits/pouce.png" alt>
<h2><a href="index.html">Retourner a l'accueil</a></h2>
</div>
</body>
</html>

22
commentaire.html Normal file
View file

@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="fr" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>Kyflo</title>
<link rel="stylesheet" type="text/css" href="css.css">
</head>
<body>
<nav>
<a href="index.html"><img src="Images/logo.png" alt></a>
<a href="checkout.html"><img id="panier" src="Images/cart.png" alt></a>
<a href="search_result.html"><img id ="loupe" src="Images/Produits/loupe.png" alt></a>
</nav>
<div id="Merci">
<h1>Merci beaucoup pour votre réponse ! Votre commentaire a été pris en compte !</h1>
<img src="Images/Produits/pouce.png" alt>
<h2><a href="index.html">Retourner a l'accueil</a></h2>
</div>
</body>
</html>

12
contact.html Normal file
View file

@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>Kyflo</title>
<link rel="stylesheet" type="text/css" href="css.css">
</head>
<body>
</body>
</html>

382
css.css Normal file
View file

@ -0,0 +1,382 @@
/*==========================================================================================*/
/*BODY + NAV*/
body{
background : linear-gradient(to left,#022425, #08023a, #1c0224);
}
body#produit
{
background : linear-gradient( #1c0224, #08023a, #022425);
z-index: 10;
font-family: 'Bookman', sans-serif;
}
h1{
font-size: 3vw;
color : white;
}
nav {
background-color: rgba(255,255,255,0.5);
width: 100%;
z-index: 1;
}
body>nav>a>img{
width : 25%;
margin : auto;
}
body>nav>button>img:hover{
background-color: rgba(255,255,255,0.5);
transition-duration: 0.5s;
}
#panier {
float : right;
width : 5%;
margin-right : 1%;
margin-left : 3%;
padding : 1.1vw 1.1vw;
}
#loupe {
float : right;
width : 5%;
margin-right : 1%;
margin-left : 3%;
padding : 1.1vw 1.1vw;
}
body>#bienvenue>h1{
font-size : 3vw;
color : white;
text-align : center;
}
body>#bienvenue>h2{
font-size : 2vw;
color : lightgrey;
text-align: center;
}
/*==========================================*/
/* CSS Confirmation commentaire */
#Merci>h1{
font-size: 2.8vw;
color : white;
text-align : center;
margin-top: 7%;
}
#Merci>h2{
font-size: 2vw;
text-align : center;
margin-top: 5%;
}
#Merci>h2>a{
color : lightgrey;
text-decoration: none;
}
#Merci>h2>a:hover{
color : yellow;
}
#Merci>img{
margin-left: 45%;
width : 10%;
margin-top: 5%;
}
/*==========================================*/
/*==========================================*/
/* CSS Produits */
/*EN TETE PRODUIT*/
#Produit{
margin-top: 5%;
}
#Produit>h1{
text-align: left;
font-size : 4vw;
margin-left: 25%;
}
#Produit>h2{
text-align: left;
font-size : 3vw;
margin-left: 25%;
color : red;
}
#Produit>h2#barre{
text-decoration: line-through;
}
#Produit>h3{
text-align: left;
font-size : 1.5vw;
margin-left: 25%;
color : lightgrey;
}
#Produit>img{
width: 20%;
float: left;
border: 0.2vw solid white;
border-radius: 10px;
background-color: rgba(0, 0, 0, 0.5);
}
#Produit>button{
background-color: rgba(0, 0, 0, 0.5);
padding : 1vw 1vw;
float : right;
text-align : center;
font-size : 2vw;
margin-right: 10%;
color: white;
border : 0.1vw solid white;
}
#Produit>button:hover{
color: black;
background-color: rgba(255,255,255,0.5);
transition-duration: 0.5s;
border-radius: 2vw;
}
/*================================================*/
/*CARACTERISTIQUES PRODUIT*/
#Carac{
width : 100%;
border-top : 0.2vw solid white;
margin-top: 8%;
}
#Carac>h1{
font-size: 3vw;
color : white;
}
#Carac>h2{
font-size: 1.5vw;
color : lightgrey;
}
/*================================================*/
/*COMMENTAIRES CLIENT*/
#Client{
width : 100%;
margin-left: 5%;
}
#Client>div>h1{
font-size : 2vw;
color :white;
margin-left: 8%;
}
#Client>div>h2 {
font-size : 1vw;
color : yellow;
margin-left: 8%;
}
#Client>div>h3 {
font-size : 1.5vw;
color : lightgrey;
margin-left: 8%;
}
#Client>div>img{
float : left;
width: 7%;
}
#Client>div{
margin-bottom: 3%;
border-bottom: 0.1vw solid darkgrey;
}
/*================================================*/
/*ESPACE LAISSER COMMENTAIRE*/
#Coms{
width : 100%;
border-top : 0.2vw solid white;
margin-top: 5%;
}
#Coms>h1{
font-size: 3vw;
color: white;
}
#Coms>h2{
font-size: 3vw;
color: white;
border-top: 0.2vw dashed white;
text-align: center;
}
#Coms>form{
margin-left: 25%;
}
#Coms>form>h1{
font-size: 1.5vw;
color : white;
}
input, select {
width: 20%;
padding: 1vw 1vw;
font-size: 1.5vw;
background: linear-gradient(to left, rgba(128, 128, 128, 0.493), rgba(0, 0, 0, 0.548));
color: white;
border : 0.1vw solid rgba(255, 255, 255, 0.5);
border-radius: 3vw;
}
input:hover{
border-radius: 0vw;
transition-duration: 0.5s;
}
input:valid{
border-radius: 0vw;
transition-duration: 0.5s;
border : 0.1vw solid rgb(8, 170, 8);
}
input[placeholder=Commentaire], select {
width: 60%;
padding: 1vw 1vw;
font-size: 1.5vw;
}
input[type=submit], select {
width: 20%;
padding: 1vw 1vw;
font-size: 1.5vw;
background-color: rgba(0, 0, 0, 0.5);
border : 0.15vw solid white;
color : white;
}
input[type=submit]:hover {
color: black;
background-color: rgba(255, 255, 255, 0.856);
transition-duration: 0.5s;
border-radius: 2vw;
}
table>tr>td>input{
border: 0vw solid white;
background-color: rgba(255, 255, 255, 0);
}
/*================================================*/
/*==========================================================================================*/
/*Slide des promotions*/
div#slider {
width: 100%;
max-width: 1920px;
margin: auto;
border-radius: 12px;
margin-top: 5%;
}
div#slider figure {
position: relative;
width: 500%;
margin: 0;
padding: 0;
font-size: 0;
text-align: left;
}
div#slider figure img {
width: 20%;
height: auto;
float: left;
}
div#slider {
width: 100%;
max-width: 1920px;
overflow: hidden
}
@keyframes slidy {
0% {left: 0%;}
20% {left: 0%;}
25% {left: -100%;}
45% {left: -100%;}
50% {left: -200%;}
70% {left: -200%;}
75% {left: -300%;}
95% {left: -300%;}
100% {left: -400%;}
}
div#slider figure {
position: relative;
width: 500%;
margin: 0;
padding: 0;
font-size: 0;
left: 0;
text-align: left;
animation: 16s slidy infinite;
}
/*==========================================================================================*/
/*Panier*/
table{
width : 80%;
margin : auto;
margin-top: 5%;
}
tr {
background-color: rgba(255, 255, 255, 0.233);
}
td {
border-top : 0.2vw solid rgb(252, 252, 252);
padding : 2vw 2vw;
font-size: 2vw;
text-align: center;
font-weight: bold;
}
th{
background-color: rgba(0, 0, 0, 0.5);
font-size: 2vw;
color : white;
}
td#total{
text-align : right;
color : red;
background-color: rgba(0, 0, 0, 0.5);
font-size : 3vw;
}
form[action="commande.html"]>h1{
font-size: 1.5vw;
}
form[action="commande.html"]>input[type=text], select {
width: 50%;
padding: 1vw 1vw;
font-size: 1.5vw;
}
#livraison {
background-color: rgba(0, 0, 0, 0.2);
}

36
index.html Normal file
View file

@ -0,0 +1,36 @@
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>Kyflo</title>
<link rel="stylesheet" type="text/css" href="css.css">
</head>
<body>
<nav>
<a href="index.html"><img src="Images/logo.png" alt="logo"></a>
<a href="checkout.html"><img id="panier" src="Images/cart.png" alt></a>
<a href="search_result.html"><img id ="loupe" src="Images/Produits/loupe.png" alt></a>
</nav>
<div id="bienvenue">
<h1>Bienvenue sur le site de KyFlo !</h1>
<h2>Vendeur de robot depuis 2010 !</h2>
</div>
<div id="slider">
<figure>
<a href="nao.html"><img src="Images/Promotions/promo1.png" alt></a>
<a href="pepper.html"><img src="Images/Promotions/promo2.png" alt></a>
<a href="r2d2.html"><img src="Images/Promotions/promo3.png" alt></a>
<a href="trompettiste.html"><img src="Images/Promotions/promo4.png" alt></a>
<a href="nao.html"><img src="Images/Promotions/promo1.png" alt></a>
</figure>
</div>
</body>
</html>

63
nao.html Normal file
View file

@ -0,0 +1,63 @@
<!DOCTYPE html>
<html lang="fr" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>Kyflo</title>
<link rel="stylesheet" type="text/css" href="css.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<nav>
<a href="index.html"><img src="Images/logo.png" alt></a>
<a href="checkout.html"><img id="panier" src="Images/cart.png" alt></a>
<a href="search_result.html"><img id ="loupe" src="Images/Produits/loupe.png" alt></a>
</nav>
<div id="Produit">
<img src="Images/Produits/nao.png" alt>
<h1>ROBOT NAO</h1>
<button>Ajouter au panier</button>
<h2>5 000€</h2>
<h3>Nao est un robot humanoide français crée entre 2005 et 2006 sur Aldebaran ou plutot dans la société Aldebaran. En effet Nao a été conçu dans une start-up française à Paris.A partir de 2007, il va remplacer le robot canidé "Aibo" comme plateforme standard de la robotcup.</h3>
</div>
<div id="Carac">
<h1>Caractéristiques du robot :</h1>
<h2>La plateforme robotique NAO existe en différents modèles qui comportent de 14 à 25 degrés de liberté. Elle est équipée d'une centrale inertielle avec un accéléromètre 3 axes et 2 gyromètres, de 2 sonars utilisant des capteurs à ultrason (émetteurs et récepteurs), de 8 capteurs de pressions résistifs sous les pieds et de 2 bumpers. NAO dispose de 90 minutes d'autonomie.</h2>
<h2>Le robot dispose également d'un système multimédia évolué incluant quatre microphones (pour la reconnaissance vocale et la localisation de la source sonore), deux haut-parleurs (pour la synthèse vocale), et deux caméras HD (1280 × 960 pixels) (pour la localisation ou la reconnaissance de visage ou d'objet).
Ces deux caméras couleurs, positionnées verticalement, lui permettent de voir une personne de 1,8 m de la tête au pied à 1,5 m. Malheureusement, pour le moment, ces deux caméras ne sont pas activables en même temps.</h2>
<h2>La plateforme robotique NAO est livrée avec une suite logicielle qui comporte un outil de programmation graphique (Choregraphe), un simulateur physique (NaoSim) et un kit de développement (SDK) qui permet de développer en Python (scripts des modules Chroregraphe) et C++ (modules embarqués). Des ponts en C#, Java et Matlab existent également. NAO est compatible avec Microsoft Robotics Studio, Cyberbotics Webots et Gostai Studio (Urbi).</h2>
</div>
<div id="Coms">
<h1>Commentaires clients :</h1>
<div id="Client">
<div>
<img src="Images/Produits/avatarF.png" alt>
<h1>Isabelle Dunand</h1>
<h3>Superbe robot, il est tout à fait fonctionnel !</h3>
</div>
<div>
<img src="Images/Produits/avatarH.png" alt>
<h1>Richard Mauron</h1>
<h3>Excellent ! Très bonne qualité, j'ai adoré le programmer !</h3>
</div>
</div>
<h2>Laissez nous un commentaire :</h2>
<form>
<h1>Nom et Prénom :</h1>
<input type="text" required>
<h1>Email :</h1>
<input type="email" required>
<h1>Commentaire:</h1>
<input type="text" placeholder="Commentaire" required>
<h1>Valider:</h1>
<input type="submit" value="Envoyer">
</form>
</div>
</body>
</html>

66
pepper.html Normal file
View file

@ -0,0 +1,66 @@
<!DOCTYPE html>
<html lang="fr" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>Kyflo</title>
<link rel="stylesheet" type="text/css" href="css.css">
</head>
<body id="produit">
<nav>
<a href="index.html"><img id ="logo" src="Images/logo.png" alt="logo"></a>
<a href="checkout.html"><img id="panier" src="Images/cart.png" alt></a>
<a href="search_result.html"><img id ="loupe" src="Images/Produits/loupe.png" alt></a>
</nav>
<div id="Produit">
<img src="Images/Produits/pepper.png" alt>
<h1>ROBOT PEPPER</h1>
<button>Ajouter au panier</button>
<h2>15 000€</h2>
<h3>Pepper est un robot humanoïde, développé par la société SoftBank Robotics (anciennement Aldebaran), capable de reconnaître certaines émotions.</h3>
</div>
<div id="Carac">
<h1>Caractéristiques du robot :</h1>
<h2>Pepper est le premier robot humanoïde au monde capable d'identifier les visages et les principales émotions humaines. Pepper a été conçu pour interagir avec les humains de la façon la plus naturelle possible à travers le dialogue et son écran tactile.</h2>
<h2>Du haut de ses 1m20, Pepper na aucun mal pour percevoir son environnement et engager le dialogue lorsquil aperçoit une personne. L'écran tactile sur son torse affiche du contenu pour renforcer les messages et seconder la parole.</h2>
<h2>Son design tout en rondeurs assure une utilisation sans danger et une très bonne acceptation des utilisateurs.</h2>
</div>
<div id="Coms">
<h1>Commentaires clients :</h1>
<div id="Client">
<div>
<img src="Images/Produits/avatarH.png" alt>
<h1>Michel Dirate</h1>
<h3>Livraison très longue ! Cependant, produit de qualité.</h3>
</div>
<div>
<img src="Images/Produits/avatarF.png" alt>
<h1>Ines Foubi</h1>
<h3>Bon robot, ma famille l'adore !</h3>
</div>
<div>
<img src="Images/Produits/avatarH.png" alt>
<h1>Robert Ritar</h1>
<h3>Robot très serviable.</h3>
</div>
</div>
<h2>Laissez nous un commentaire :</h2>
<form action="commentaire.html">
<h1>Nom et Prénom :</h1>
<input type="text" required>
<h1>Email :</h1>
<input type="text" required>
<h1>Commentaire:</h1>
<input type="text" placeholder="Commentaire" required>
<h1>Valider:</h1>
<input type="submit" value="Envoyer">
</form>
</div>
</body>
</html>

61
r2d2.html Normal file
View file

@ -0,0 +1,61 @@
<!DOCTYPE html>
<html lang="fr" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>Kyflo</title>
<link rel="stylesheet" type="text/css" href="css.css">
</head>
<body id="produit">
<nav>
<a href="index.html"><img src="Images/logo.png" alt></a>
<a href="checkout.html"><img id="panier" src="Images/cart.png" alt></a>
<a href="search_result.html"><img id ="loupe" src="Images/Produits/loupe.png" alt></a>
</nav>
<div id="Produit">
<img src="Images/Produits/r2d2.png" alt>
<h1>ROBOT R2D2</h1>
<button>Ajouter au panier</button>
<h2>500€</h2>
<h3>R2D2 est un petit robot de compagnie capable de vous servir d'assistant intergalactique au quotidien.</h3>
</div>
<div id="Carac">
<h1>Caractéristiques du robot :</h1>
<h2>R2D2 est équipé de la dernière technologie de streaming musical pour vour lire toutes vos musiques préférées</h2>
<h2>Son design tout droit tiré de la série vous plongera dans l'univers Star Wars à coup sur !</h2>
<h2>Il possède une reconnaissance vocale très optimale qui vous permettras de le piloter rien qu'a la voix !</h2>
</div>
<div id="Coms">
<h1>Commentaires clients :</h1>
<div id="Client">
<div>
<img src="Images/Produits/avatarH.png" alt>
<h1>Patrick Busson</h1>
<h3>Petit robot sympathique, très utile au quotidien !</h3>
</div>
<div>
<img src="Images/Produits/avatarF.png" alt>
<h1>Clara Soufu</h1>
<h3>Grande fan de Star Wars, j'adore ce petit robot personnel !</h3>
</div>
</div>
<h2>Laissez nous un commentaire :</h2>
<form action="commentaire.html">
<h1>Nom et Prénom :</h1>
<input type="text" required>
<h1>Email :</h1>
<input type="text" required>
<h1>Commentaire:</h1>
<input type="text" placeholder="Commentaire" required>
<h1>Valider:</h1>
<input type="submit" value="Envoyer">
</form>
</div>
</body>
</html>

12
search_result.html Normal file
View file

@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>Kyflo</title>
<link rel="stylesheet" type="text/css" href="css.css">
</head>
<body>
</body>
</html>

18
trompettiste.html Normal file
View file

@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>Kyflo</title>
<link rel="stylesheet" type="text/css" href="css.css">
</head>
<body>
<nav>
<a href="index.html"><img src="Images/logo.png" alt></a>
<a href="checkout.html"><img id="panier" src="Images/cart.png" alt></a>
</nav>
</body>
</html>