mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
89 lines
No EOL
1.6 KiB
HTML
89 lines
No EOL
1.6 KiB
HTML
<div class="btn"><span data-text="Click me">Click me</span></div>
|
|
|
|
<style>
|
|
/* From Uiverse.io by Mohsinech - Tags: black, button, click */
|
|
.btn {
|
|
background: transparent;
|
|
border: 1px solid #141414;
|
|
outline: none;
|
|
padding: 12px 40px;
|
|
height: 60px;
|
|
border-radius: 100px;
|
|
overflow: hidden;
|
|
transform: scaleX(1);
|
|
transition: transform 0.5s cubic-bezier(0.4, 0, 0, 1);
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.btn:hover {
|
|
animation: animate-scaleX 0.6s cubic-bezier(0.4, 0, 0, 1);
|
|
background: transparent;
|
|
}
|
|
|
|
.btn::after {
|
|
content: "";
|
|
position: absolute;
|
|
left: 0;
|
|
bottom: 0;
|
|
background: black;
|
|
transition: transform 0.5s cubic-bezier(0.4, 0, 0, 1),
|
|
border-radius 0.5s cubic-bezier(0.4, 0, 0, 1);
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: 50% 50% 0 0;
|
|
transform: translateY(100%);
|
|
}
|
|
|
|
.btn:hover::after {
|
|
transform: translateY(0%);
|
|
border-radius: 0;
|
|
}
|
|
|
|
.btn span {
|
|
font-size: 20px;
|
|
font-weight: 500;
|
|
overflow: hidden;
|
|
position: relative;
|
|
color: black;
|
|
}
|
|
|
|
.btn span:after {
|
|
width: 100%;
|
|
height: 100%;
|
|
transition: transform 0.5s cubic-bezier(0.4, 0, 0, 1);
|
|
content: attr(data-text);
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
position: absolute;
|
|
left: 50%;
|
|
bottom: 0;
|
|
z-index: 1;
|
|
transform: translate(-50%, 100%);
|
|
color: white;
|
|
}
|
|
.btn:hover span:after {
|
|
transform: translate(-50%, 0);
|
|
}
|
|
|
|
.btn:focus {
|
|
outline: none;
|
|
}
|
|
|
|
@keyframes animate-scaleX {
|
|
0% {
|
|
transform: scaleX(1);
|
|
}
|
|
50% {
|
|
transform: scaleX(1.05);
|
|
}
|
|
100% {
|
|
transform: scaleX(1);
|
|
}
|
|
}
|
|
|
|
</style>
|
|
|