Demoya bakmak isterseniz Tıklayın.
Kodlar buraya benim tarafımdan yazılmıştır. ( videodaki kodlar ile aynı fakat tek tek ben düzenleyip yazdım. )
HTML Kodu:
PHP Kod:
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>WD</title>
<link rel="stylesheet" type="text/css" href="style.css"
</head>
<body>
<a href="https://forum.webdiyo.com"><svg><rect></rect></svg>FORUM</a>
</body>
</html>
CSS Kodu:
PHP Kod:
body
{
margin: 0;
padding: 0;
background: #000;
}
a
{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 205px;
height: 50px;
line-height: 50px;
text-align: center;
font-family: sans-serif;
text-transform: uppercase;
font-size: 23px;
letter-spacing: 4px;
color: #fff;
text-decoration: none;
}
a svg,
a svg rect
{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
fill: transparent;
}
a svg rect
{
stroke: #00e2ff;
stroke-width: 4;
transition: 1s;
stroke-dasharray: 60 200;
stroke-dashoffset: 350;
}
a:hover svg rect
{
stroke: #ff0;
stroke-dasharray: 200 60;
stroke-dashoffset: 0;
}