Menú Indices Vertical con efectos
Publicado por ScriptShow (125 intervenciones) el 23/05/2019 13:24:15
Saludos,
sencillo snippet en puro CSS compatible y adaptable (no precisa librerías). Un Menú Vertical Numérico para navegar por secciones, capas, páginas, etc. Estructura base de HTML y CSS.
Espero sea útil.
sencillo snippet en puro CSS compatible y adaptable (no precisa librerías). Un Menú Vertical Numérico para navegar por secciones, capas, páginas, etc. Estructura base de HTML y CSS.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html>
<head>
<style>
body {
font:normal 16px/48px sans-serif;
color:#D4D4D4;
}
#tab li a {
display:inline-block;
text-decoration:none;
text-align:center;
color:#000000;
padding:16px;
outline:none;
transition:0.4s;
}
#tab li a:focus {
font-size:48px;
}
</style>
</head>
<body>
<h2>Test</h2>
<ul id="tab">
<li><a href="#" tabindex="1">01</a></li>
<li><a href="#" tabindex="2">02</a></li>
<li><a href="#" tabindex="3">03</a></li>
<li><a href="#" tabindex="4">04</a></li>
</ul>
</body>
</html>
Espero sea útil.
Valora esta pregunta


2