Türker
Yeni Üye
Hover buton ilk öncelikle fareyi üstüne getirdiğimizde şekil değiştiren butonlardır ve bu butonlardan bir kaç örnek vereceğim. Resim olarak:
Kodları ise:
Kodları ise:
HTML:
<style>
body {
margin: 0;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background-color: black;
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
}
nav ul li {
--c: goldenrod;
color: var(--c);
font-size: 16px;
border: 0.3em solid var(--c);
border-radius: 0.5em;
width: 12em;
height: 3em;
text-transform: uppercase;
font-weight: bold;
font-family: sans-serif;
letter-spacing: 0.1em;
text-align: center;
line-height: 3em;
position: relative;
overflow: hidden;
z-index: 1;
transition: 0.5s;
margin: 1em;
}
nav ul li span {
position: absolute;
width: 25%;
height: 100%;
background-color: var(--c);
transform: translateY(150%);
border-radius: 50%;
left: calc((var(--n) - 1) * 25%);
transition: 0.5s;
transition-delay: calc((var(--n) - 1) * 0.1s);
z-index: -1;
}
[QUOTE]
nav ul li:hover {
[/QUOTE]
color: black;
}
nav ul li:hover span {
transform: translateY(0) scale(2);
}
nav ul li span:nth-child(1) {
--n: 1;
}
nav ul li span:nth-child(2) {
--n: 2;
}
nav ul li span:nth-child(3) {
--n: 3;
}
nav ul li span:nth-child(4) {
--n: 4;
}
</style>
<nav>
<ul>
<li>
webmaster
<span></span><span></span><span></span><span></span>
</li>
<li>
forum
<span></span><span></span><span></span><span></span>
</li>
<li>
.com
<span></span><span></span><span></span><span></span>
</li>
<li>
.tr
<span></span><span></span><span></span><span></span>
</li>
</ul>
</nav>
Bu kod alıntıdır. Sadece biraz düzenledim. Daha fazla hover buton örneği ve kodları için
webmasterforum.com.tr
Son düzenleme: