mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
69 lines
1.1 KiB
HTML
69 lines
1.1 KiB
HTML
<button class="button">
|
|
<span>Hover!</span>
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by gharsh11032000 - Tags: button, hover effect */
|
|
.button {
|
|
position: relative;
|
|
font-size: 24px;
|
|
font-weight: 600;
|
|
padding: 15px 30px;
|
|
color: #cfef00;
|
|
background-color: transparent;
|
|
border: 2px solid #cfef00;
|
|
border-radius: 10px;
|
|
cursor: pointer;
|
|
transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.button::before {
|
|
content: '';
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: #cfef00;
|
|
top: 0%;
|
|
left: -100%;
|
|
scale: 1;
|
|
border-radius: inherit;
|
|
transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
|
|
}
|
|
|
|
.button span {
|
|
transition: all 0.7s;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.button span::before {
|
|
position: absolute;
|
|
content: 'Hover!';
|
|
top: 0;
|
|
left: 0;
|
|
color: #212121;
|
|
width: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.button:hover span::before {
|
|
width: 100%;
|
|
transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
|
|
transition-delay: 0.4s;
|
|
}
|
|
|
|
.button:hover::before {
|
|
scale: 1;
|
|
top: 0%;
|
|
left: 0%;
|
|
}
|
|
|
|
.button:hover {
|
|
border-color: transparent;
|
|
}
|
|
|
|
.button:active {
|
|
scale: 0.9;
|
|
}
|
|
|
|
</style>
|