mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
69 lines
No EOL
1.6 KiB
HTML
69 lines
No EOL
1.6 KiB
HTML
<div class="payment-button">
|
|
<span class="label">Pay Now</span>
|
|
<span class="price">$49.99</span>
|
|
</div>
|
|
|
|
<style>
|
|
/* From Uiverse.io by SouravBandyopadhyay - Tags: simple, tooltip, animation, text animation, animated, transition, hover effect, hover button */
|
|
.payment-button {
|
|
--background: #007bff;
|
|
--text-color: #fff;
|
|
--hover-background: #0056b3;
|
|
--hover-text-color: #fff;
|
|
--border-radius: 4px;
|
|
--box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
|
|
display: inline-block;
|
|
cursor: pointer;
|
|
font-size: 18px;
|
|
padding: 0.5em 1.5em;
|
|
background: var(--background);
|
|
color: var(--text-color);
|
|
border: none;
|
|
border-radius: var(--border-radius);
|
|
box-shadow: var(--box-shadow);
|
|
transition: transform 0.2s ease-in-out, background 0.3s ease-in-out,
|
|
color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
|
|
text-transform: uppercase;
|
|
font-weight: 600;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.label {
|
|
z-index: 1;
|
|
}
|
|
|
|
.price {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
display: grid;
|
|
place-items: center;
|
|
transform-origin: 100%;
|
|
transform: scale(1);
|
|
transition: transform 0.3s ease-in-out, color 0.3s ease-in-out,
|
|
background 0.3s ease-in-out;
|
|
color: var(--background);
|
|
background: var(--text-color);
|
|
border-radius: var(--border-radius);
|
|
font-weight: bold;
|
|
font-size: 14px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.payment-button:hover {
|
|
transform: scale(1.05);
|
|
background: var(--hover-background);
|
|
color: var(--hover-text-color);
|
|
box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
.payment-button:hover .price {
|
|
transform: scale(0);
|
|
}
|
|
|
|
</style>
|
|
|