Snippet kali adalah hover effect pada button yang akan melakukan animasi swipe dari atas ke bawah button.
body {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
a {
text-decoration: none;
color: #351435;
font-family: sans-serif;
font-size: 40px;
border: 3px solid #351435;
padding: 40px 80px;
position: relative;
transition: all 1s;
overflow: hidden;
}
a:before {
content: '';
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
background-color: #351435;
z-index: -1;
transform: translateY(-100%);
transition: all 1s;
}
a:hover:before {
transform: translateY(0);
}
a:hover {
color: white;
}