Menu logo html/css
Fermé
Timo
-
3 avril 2019 à 15:12
1Seb Messages postés 166 Date d'inscription dimanche 27 mars 2016 Statut Membre Dernière intervention 30 octobre 2021 - 3 avril 2019 à 19:44
1Seb Messages postés 166 Date d'inscription dimanche 27 mars 2016 Statut Membre Dernière intervention 30 octobre 2021 - 3 avril 2019 à 19:44
A voir également:
- Menu logo html/css
- Menu déroulant excel - Guide
- Editeur html - Télécharger - HTML
- Windows 11 menu démarrer classique - Guide
- Logo jeu - Télécharger - Jeux vidéo
- Canon quick menu - Télécharger - Utilitaires
1 réponse
1Seb
Messages postés
166
Date d'inscription
dimanche 27 mars 2016
Statut
Membre
Dernière intervention
30 octobre 2021
37
3 avril 2019 à 19:44
3 avril 2019 à 19:44
Bonjour,
Peut-être comme ceci :
et :
Peut-être comme ceci :
<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <title>Juki</title> <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous"> </head> <body> <nav class="menu"> <input type="checkbox" class="menu-open" name="menu-open" id="menu-open" /> <label class="menu-open-button" for="menu-open"> <span class="lines line-1"></span> <span class="lines line-2"></span> <span class="lines line-3"></span> </label> <a href="#" class="menu-item blue"> <i class="fa fa-anchor"></i> </a> <a href="#" class="menu-item green"> <i class="fa fa-coffee"></i></a> <a href="#" class="menu-item red"> <i class="fa fa-heart"></i></a> <a href="#" class="menu-item purple"> <i class="fa fa-microphone"></i> </a> <a href="#" class="menu-item orange"> <i class="fa fa-star"></i></a> <a href="#" class="menu-item lightblue"> <i class="fa fa-gem"></i></a> </nav> </body> </html>
et :
body { padding : 0; margin : 0; background : #596778; color : #EEEEEE; text-align : center; font-family : "Lato", sans-serif; } @media screen and (max-width:700px) { body { padding : 170px 0 0 0; width : 100%; } } a { color : inherit; } .menu-item, .menu-open-button { background : #EEEEEE; border-radius : 100%; width : 80px; height : 80px; margin-left : -40px; position : absolute; color : #FFFFFF; text-align : center; line-height : 80px; transform : translate3d(0,0,0); transition : transform 200ms ease-out; } .menu-open { display : none; } .lines { width : 25px; height : 3px; background : #596778; display : block; position : absolute; top : 50%; left : 50%; margin-left : -12.5px; margin-top : -1.5px; transition : transform 200ms; } .line-1 { transform : translate3d(0,-8px,0); } .line-2 { transform : translate3d(0,0,0); } .line-3 { transform : translate3d(0,8px,0); } .menu-open:checked + .menu-open-button .line-1 { transform : translate3d(0,0,0) rotate(45deg); } .menu-open:checked + .menu-open-button .line-2 { transform : translate3d(0,0,0) scale(0.1,1); } .menu-open:checked + .menu-open-button .line-3 { transform : translate3d(0,0,0) rotate(-45deg); } .menu { margin : auto; position : absolute; top : 0; bottom : 0; left : 0; right : 0; width : 80px; height : 80px; text-align : center; box-sizing : border-box; font-size : 26px; } .menu-item:hover { background : #EEEEEE; color : #3290B1; } .menu-item:nth-child(3) { transition-duration : 700ms; } .menu-item:nth-child(4) { transition-duration : 700ms; } .menu-item:nth-child(5) { transition-duration : 700ms; } .menu-item:nth-child(6) { transition-duration : 700ms; } .menu-item:nth-child(7) { transition-duration : 700ms; } .menu-item:nth-child(8) { transition-duration : 700ms; } .menu-item:nth-child(9) { transition-duration : 700ms; } .menu-open-button { z-index : 2; transition-timing-function : cubic-bezier(0.175,0.885,0.32,1.275); transition-duration : 400ms; transform : scale(1.1,1.1) translate3d(0,0,0); cursor : pointer; box-shadow : 3px 3px 0 0 rgb(0 0 0 / 0.14); } .menu-open-button:hover { transform : scale(1.2,1.2) translate3d(0,0,0); } .menu-open:checked + .menu-open-button { transition-timing-function : linear; transition-duration : 200ms; transform : scale(0.8,0.8) translate3d(0,0,0); } .menu-open:checked ~ .menu-item { transition-timing-function : cubic-bezier(0.935,0,0.34,1.33); } .menu-open:checked ~ .menu-item:nth-child(3) { transition-duration : 180ms; transform : translate3d(0.08361px,-104.99997px,0); } .menu-open:checked ~ .menu-item:nth-child(4) { transition-duration : 280ms; transform : translate3d(90.9466px,-52.47586px,0); } .menu-open:checked ~ .menu-item:nth-child(5) { transition-duration : 380ms; transform : translate3d(90.9466px,52.47586px,0); } .menu-open:checked ~ .menu-item:nth-child(6) { transition-duration : 480ms; transform : translate3d(0.08361px,104.99997px,0); } .menu-open:checked ~ .menu-item:nth-child(7) { transition-duration : 580ms; transform : translate3d(-90.86291px,52.62064px,0); } .menu-open:checked ~ .menu-item:nth-child(8) { transition-duration : 680ms; transform : translate3d(-91.03006px,-52.33095px,0); } .menu-open:checked ~ .menu-item:nth-child(9) { transition-duration : 780ms; transform : translate3d(-0.25084px,-104.9997px,0); } .blue { background-color : #669AE1; box-shadow : 3px 3px 0 0 rgb(0 0 0 / 0.14); text-shadow : 1px 1px 0 rgb(0 0 0 / 0.12); } .blue:hover { color : #669AE1; text-shadow : none; } .green { background-color : #70CC72; box-shadow : 3px 3px 0 0 rgb(0 0 0 / 0.14); text-shadow : 1px 1px 0 rgb(0 0 0 / 0.12); } .green:hover { color : #70CC72; text-shadow : none; } .red { background-color : #FE4365; box-shadow : 3px 3px 0 0 rgb(0 0 0 / 0.14); text-shadow : 1px 1px 0 rgb(0 0 0 / 0.12); } .red:hover { color : #FE4365; text-shadow : none; } .purple { background-color : #C49CDE; box-shadow : 3px 3px 0 0 rgb(0 0 0 / 0.14); text-shadow : 1px 1px 0 rgb(0 0 0 / 0.12); } .purple:hover { color : #C49CDE; text-shadow : none; } .orange { background-color : #FC913A; box-shadow : 3px 3px 0 0 rgb(0 0 0 / 0.14); text-shadow : 1px 1px 0 rgb(0 0 0 / 0.12); } .orange:hover { color : #FC913A; text-shadow : none; } .lightblue { background-color : #62C2E4; box-shadow : 3px 3px 0 0 rgb(0 0 0 / 0.14); text-shadow : 1px 1px 0 rgb(0 0 0 / 0.12); } .lightblue:hover { color : #62C2E4; text-shadow : none; } .credit { margin : 24px 20px 120px 0; text-align : right; color : #EEEEEE; } .credit a { padding : 8px 0; color : #C49CDE; text-decoration : none; transition : all 0.3s 0s ease; } .credit a:hover { text-decoration : underline; }