mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
65 lines
1.1 KiB
HTML
65 lines
1.1 KiB
HTML
<div class="button">
|
|
<div class="box">H</div>
|
|
<div class="box">O</div>
|
|
<div class="box">V</div>
|
|
<div class="box">E</div>
|
|
<div class="box">R</div>
|
|
</div>
|
|
<style>
|
|
/* From Uiverse.io by mrhyddenn - Tags: button, hover */
|
|
.button {
|
|
display: flex;
|
|
}
|
|
|
|
.box {
|
|
width: 35px;
|
|
height: 40px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
font-size: 15px;
|
|
font-weight: 700;
|
|
color: #fff;
|
|
transition: all .8s;
|
|
cursor: pointer;
|
|
position: relative;
|
|
background: rgb(58, 165, 253);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.box:before {
|
|
content: "W";
|
|
position: absolute;
|
|
top: 0;
|
|
background: #0f0f0f;
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
transform: translateY(100%);
|
|
transition: transform .4s;
|
|
}
|
|
|
|
.box:nth-child(2)::before {
|
|
transform: translateY(-100%);
|
|
content: 'O';
|
|
}
|
|
|
|
.box:nth-child(3)::before {
|
|
content: 'R';
|
|
}
|
|
|
|
.box:nth-child(4)::before {
|
|
transform: translateY(-100%);
|
|
content: 'L';
|
|
}
|
|
|
|
.box:nth-child(5)::before {
|
|
content: 'D';
|
|
}
|
|
|
|
.button:hover .box:before {
|
|
transform: translateY(0);
|
|
}
|
|
</style>
|