galaxy/Buttons/Subaashbala_slippery-goat-18.html

110 lines
No EOL
2.6 KiB
HTML

<button class="button">
<div class="bgContainer">
<span>Hover</span>
<span>Hover</span>
</div>
<div class="arrowContainer">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 45 38"
height="25"
width="25"
>
<path
fill="black"
d="M43.7678 20.7678C44.7441 19.7915 44.7441 18.2085 43.7678 17.2322L27.8579 1.32233C26.8816 0.34602 25.2986 0.34602 24.3223 1.32233C23.346 2.29864 23.346 3.88155 24.3223 4.85786L38.4645 19L24.3223 33.1421C23.346 34.1184 23.346 35.7014 24.3223 36.6777C25.2986 37.654 26.8816 37.654 27.8579 36.6777L43.7678 20.7678ZM0 21.5L42 21.5V16.5L0 16.5L0 21.5Z"
></path>
</svg>
</div>
</button>
<style>
/* From Uiverse.io by Subaashbala - Tags: login, button, transition, hover button */
button {
display: flex;
justify-content: space-around;
align-items: center;
padding: 1em 0em 1em 1em;
background-color: yellow;
box-shadow: 4px 6px 0px black;
border: 4px solid;
border-radius: 15px;
position: relative;
overflow: hidden;
z-index: 100;
transition: box-shadow 250ms, transform 250ms, filter 50ms;
}
button:hover {
transform: translate(2px, 2px);
box-shadow: 2px 3px 0px black;
}
button:active {
filter: saturate(0.75);
}
button::after {
content: "";
position: absolute;
inset: 0;
background-color: pink;
z-index: -1;
transform: translateX(-100%);
transition: transform 250ms;
}
button:hover::after {
transform: translateX(0);
}
.bgContainer {
position: relative;
display: flex;
justify-content: start;
align-items: center;
overflow: hidden;
max-width: 35%; /* adjust this if the button text is not proper */
font-size: 2em;
font-weight: 600;
}
.bgContainer span {
position: relative;
transform: translateX(-100%);
transition: all 250ms;
}
.button:hover .bgContainer > span {
transform: translateX(0);
}
.arrowContainer {
padding: 1em;
margin-inline-end: 1em;
border: 4px solid;
border-radius: 50%;
background-color: pink;
position: relative;
overflow: hidden;
transition: transform 250ms, background-color 250ms;
z-index: 100;
}
.arrowContainer::after {
content: "";
position: absolute;
inset: 0;
border-radius: inherit;
background-color: yellow;
transform: translateX(-100%);
z-index: -1;
transition: transform 250ms ease-in-out;
}
button:hover .arrowContainer::after {
transform: translateX(0);
}
button:hover .arrowContainer {
transform: translateX(5px);
}
button:active .arrowContainer {
transform: translateX(8px);
}
.arrowContainer svg {
vertical-align: middle;
}
</style>