پیشنمایش زنده
کد HTML
<div class="button-container">
<a href="/" class="brutalist-button claude">
<div class="claude-logo">
<svg
viewBox="0 0 512 512"
clip-rule="evenodd"
fill-rule="evenodd"
image-rendering="optimizeQuality"
text-rendering="geometricPrecision"
shape-rendering="geometricPrecision"
xmlns="http://www.w3.org/2000/svg"
>
<rect
ry="105.042"
rx="104.187"
height="512"
width="512"
fill="#CC9B7A"
></rect>
<path
d="M318.663 149.787h-43.368l78.952 212.423 43.368.004-78.952-212.427zm-125.326 0l-78.952 212.427h44.255l15.932-44.608 82.846-.004 16.107 44.612h44.255l-79.126-212.427h-45.317zm-4.251 128.341l26.91-74.701 27.083 74.701h-53.993z"
fill-rule="nonzero"
fill="#1F1F1E"
></path>
</svg>
</div>
<div class="button-text">
<span>Powered By</span>
<span>Claude 3.5</span>
</div>
</a>
</div>
کد CSS
.button-container {
display: flex;
justify-content: center;
gap: 20px; /* Adjust this value to increase or decrease space between buttons */
padding: 20px;
}
.brutalist-button {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
border: 3px solid #000000;
border-radius: 12px;
padding: 0;
text-decoration: none;
color: #000000;
font-weight: bold;
position: relative;
box-shadow: 4px 4px 0px #000000;
overflow: hidden;
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
height: 130px;
width: 130px;
cursor: pointer;
background-color: rgb(
204 155 122
); /* Added background color for Claude button */
}
.brutalist-button::before {
content: "";
position: absolute;
left: 50%;
bottom: -150%;
width: 300%;
height: 300%;
border-radius: 50%;
transform: translateX(-50%) scale(0);
transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
z-index: 1;
}
.brutalist-button.claude::before {
background-color: rgb(204 155 122);
}
.brutalist-button:hover::before {
transform: translateX(-50%) scale(1);
}
.brutalist-button:hover {
transform: translate(-4px, -4px);
box-shadow: 8px 8px 0px #000000;
}
.brutalist-button:active {
transform: translate(2px, 2px);
box-shadow: 2px 2px 0px #000000;
}
.claude-logo {
display: flex;
align-items: center;
justify-content: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 2;
width: 90px;
height: 90px;
border-radius: 30%;
transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.claude-logo img {
width: 100%;
height: auto;
border-radius: 50%;
}
.starburst {
font-size: 54px;
color: #ffffff;
transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
@keyframes spin {
0% {
transform: translate(-50%, -50%) rotate(0deg);
}
100% {
transform: translate(-50%, -50%) rotate(360deg);
}
}
.brutalist-button:hover .claude-logo {
animation: spin 5s linear infinite;
width: 50px;
height: 50px;
top: 28%;
}
.brutalist-button:hover .starburst {
transform: scale(0.6);
}
.button-text {
display: flex;
flex-direction: column;
align-items: center;
line-height: 1.3;
transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
text-align: center;
opacity: 0;
transform: translateY(20px);
z-index: 2;
position: absolute;
bottom: 18px;
left: 0;
right: 0;
color: #ffffff; /* Adjusted text color for button text */
}
.button-text span:first-child {
font-size: 13px;
font-weight: 500;
margin-bottom: 2px;
}
.button-text span:last-child {
font-size: 16px;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.8px;
color: #61410a;
}
.brutalist-button:hover .button-text {
opacity: 1;
transform: translateY(0);
}
.brutalist-button.claude:hover .button-text {
color: #000000; /* Adjusted text color for Claude button hover */
}