Bom dia,
Eu acrescentei um botão de HOME além dos já existentes (bolos e bebidas) e gostaria de saber como ficaria o CSS para dar o efeito de transição entre eles.
Obrigado.
Meu código está assim:
HTML
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,inital-scale=1">
<link rel="stylesheet" type="text/css" href="css/estilo.css">
<title>App</title>
</head>
<body>
<input type="radio" name="opcao" id="opcao-home" checked>
<label for="opcao-home">Home</label>
<input type="radio" name="opcao" id="opcao-bolos">
<label for="opcao-bolos">Bolos</label>
<input type="radio" name="opcao" id="opcao-bebidas">
<label for="opcao-bebidas">Bebidas</label>
<img src="imagens/menu-home.png" id="menu-home" class="menu">
<img src="imagens/menu-bolos.png" id="menu-bolos" class="menu">
<img src="imagens/menu-bebidas.png" id="menu-bebidas" class="menu">
</body>
</html>
CSS
body {
background: #3D1A11;
font-family: sans-serif;
margin: 0;
text-align: center;
}
#opcao-bolos:checked ~ #menu-bebidas,
#opcao-bolos:checked ~ #menu-home,
#opcao-bebidas:checked ~ #menu-home,
#opcao-bebidas:checked ~ #menu-bolos,
#opcao-home:checked ~ #menu-bolos,
#opcao-home:checked ~ #menu-bebidas {
display: none;
}
input[type=radio] {
display: none;
}
.menu {
width: 100%;
margin-bottom: 100px;
}
label {
background: center 0.5em no-repeat #563429;
background-size: 4em;
color: white;
display: block;
font-size: 75%;
padding: 4.5em 0 1em;
text-transform: uppercase;
width: 33.4%;
position: fixed;
bottom: 0;
z-index: 1;
}
label[for=opcao-home] {
left: 0%;
background-image: url(../imagens/icone-home.svg);
}
label[for=opcao-bolos] {
right: 33.4%;
background-image: url(../imagens/icone-bolos.svg);
}
label[for=opcao-bebidas] {
right: 0;
background-image: url(../imagens/icone-bebidas.svg);
}
:checked + label {
background-color: #E4876D;
}