mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
79 lines
1.2 KiB
HTML
79 lines
1.2 KiB
HTML
|
|
<button class="btn">Hover Me!</button>
|
|
<style>
|
|
/* From Uiverse.io by EmmaxPlay - Tags: button */
|
|
.btn {
|
|
padding: 0.9em 1.6em;
|
|
border: none;
|
|
outline: none;
|
|
color: #FFF;
|
|
font-family: inherit;
|
|
font-weight: 500;
|
|
font-size: 17px;
|
|
cursor: pointer;
|
|
position: relative;
|
|
z-index: 0;
|
|
border-radius: 12px;
|
|
}
|
|
|
|
.btn::after {
|
|
content: "";
|
|
z-index: -1;
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: rgb(46, 46, 46);
|
|
left: 0;
|
|
top: 0;
|
|
border-radius: 10px;
|
|
}
|
|
/* glow */
|
|
.btn::before {
|
|
content: "";
|
|
background: linear-gradient(
|
|
45deg,
|
|
#FF0000, #002BFF, #FF00C8, #002BFF,
|
|
#FF0000, #002BFF, #FF00C8, #002BFF
|
|
);
|
|
position: absolute;
|
|
top: -2px;
|
|
left: -2px;
|
|
background-size: 600%;
|
|
z-index: -1;
|
|
width: calc(100% + 4px);
|
|
height: calc(100% + 4px);
|
|
filter: blur(8px);
|
|
animation: glowing 20s linear infinite;
|
|
transition: opacity .3s ease-in-out;
|
|
border-radius: 10px;
|
|
opacity: 0;
|
|
}
|
|
|
|
@keyframes glowing {
|
|
0% {
|
|
background-position: 0 0;
|
|
}
|
|
|
|
50% {
|
|
background-position: 400% 0;
|
|
}
|
|
|
|
100% {
|
|
background-position: 0 0;
|
|
}
|
|
}
|
|
|
|
/* hover */
|
|
.btn:hover::before {
|
|
opacity: 1;
|
|
}
|
|
|
|
.btn:active:after {
|
|
background: transparent;
|
|
}
|
|
|
|
.btn:active {
|
|
color: #000;
|
|
font-weight: bold;
|
|
}
|
|
</style>
|