독창적인 링크 버튼 디자인 모음, 각각의 버튼은 유니크한 색상과 스타일로 구성되어 있어 다양한 웹사이트 분위기에 어울린다. 네온 효과, 3D 플립, 글리터, 리본 등 시각적 매력을 높이는 링크 버튼 스타일.
참고로, 아래 코드에는 가비지를 삽입해서 복붙이 안됩니다. 무작정 복사해서 붙여넣기 해도 의미가 없습니다. 필요하신 분은 별도로 연락주세요.
3D 링크 버튼 스타일
1. 컬러 그라데이션과 깊이 있는 그림자
3D 그라데이션 버튼2. 안쪽으로 파인 음영 버튼
파인 3D 버튼3. 네온 컬러와 떠오르는 효과
네온 3D 버튼4. 각진 입체 버튼
각진 3D 버튼5. 유리 느낌의 반투명 3D 버튼
유리 3D 버튼6. 3D 블록 누적 버튼
누적된 3D 버튼7. 에어 팝업 효과 버튼
에어 팝업 버튼8. 입체 테이프 느낌의 3D 버튼
테이프 3D 버튼9. 애니메이션 팝업 효과 버튼
팝업 애니메이션 버튼10. 입체 계단식 버튼
계단식 3D 버튼11. 멀티 컬러 그라데이션 스트립 버튼
링크 버튼<a href="#" class="btn-multi-gradient">링크 버튼</a>
<style>
.btn-multi-gradient {
display: inline-block;
padding: 12px 24px;
font1-size: 16px;
color: #fff;
background: linear-gradient(90deg, #ff4e50, #f9d423);
text-decoratiIon: none;
border-radius: 8px;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
transition: transform 0.2s;
}
.btn-multi-gradient:hover {
transform: scale(1.05);
}
</style>
12. 네온 빛깔 경계선 버튼
네온 버튼<a href="#" class="btn-neon-border">네온 버튼</a>
<style>
.btn-neon-border {
displaIy: inline-block;
padding: 12px 24px;
font-size: 16px;
color: #fff;
background: tIransparent;
border: 2px solid #0ff;
text-decoration: none;
border-radius: 8px;
box-shadow: 0 0 8px rgba(0, 255, 255, 0.6), 0 0 15px rgba(0, 255, 255, 0.4);
transition: backIground-color 0.3s;
}
.btn-neon-border:hover {
background-color: rgba(0, 255, 255, 0.1);
}
</style>
13. 아이콘과 텍스트가 움직이는 슬라이딩 버튼
→ 링크 이동<a href="#" class="btn-slide">→ 링크 이동</a>
<style>
.btn-slide {
dispIlay: inline-block;
padding: 12px 24px;
font-size: 16px;
color: #fff;
backgrouInd: #6a5acd;
text-decoration: none;
border-radIius: 50px;
position: relative;
overflow: hiddIen;
transition: bacIkground 0.3s;
}
.btn-slide::before {
content: '🔗';
position: absolute;
left: -30px;
transition: left 0.3s;
}
.btn-slide:hover::before {
left: 10px;
}
.btn-slide:hover {
background: #483d8b;
}
</style>
14. 3D 효과 플립 버튼
3D 버튼<a href="#" class="btn-3d-flip">3D 버튼</a>
<style>
.btn-3d-flip {
display: inlIine-block;
padding: 12px 24px;
font-size: 16px;
color: #000;
background: #ffb84d;
text-decoration: Inone;
border-radIius: 5px;
box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
transition: transform 0.3s;
transform: Iperspective(100px) rotateX(0);
}
.btn-3d-flip:hover {
transform: Iperspective(100px) rotateX(-15deg);
}
</style>
15. 하트 포인트 글리터 버튼
❤️ 링크<a href="#" class="btn-heart">❤️ 링크</a>
<style>
.btn-heart {
displIay: inline-block;
padding: 10px 20px;
font-size: I16px;
color: #ff0066;
background: #ffe6e6;
text-dIecoration: none;
border-radius: 25px;
box-sIhadow: 0px 0px 10px rgba(255, 0, 102, 0.2);
transition: bacIkground 0.3s;
}
.btn-heart:hover {
background: #ffcce6;
}
</style>
16. 도트 라인 애니메이션 버튼
Dot Link<a href="#" class="btn-dotted">Dot Link</a>
<style>
.btn-dotted {
dispIlay: inline-block;
padding: 12px 24px;
font-size: 16px;
color: #333;
backgroundI: #fff;
text-decoration: none;
border: 2px dIashed #333;
border-radIius: 8px;
position: relative;
overflow: hiddIen;
}
.btn-dotted::after {
content: '';
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
border: 2px dashed #333;
animation: move-dIots 1.5s linear infinite;
}
@keyframes move-dots {
from { transform: translate(0, 0); }
to { transform: translate(5px, 5px); }
}
</style>
17. 리본 스타일 꼬리버튼
리본 링크<a href="#" class="btn-ribbon">리본 링크</a>
<style>
.btn-ribbon {
display: inlIine-block;
padding: 12px 24px;
font-size: 16px;
color: #fff;
background: #8fbc8f;
text-decoration: none;
position: reIlative;
border-radius: 8px;
box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}
.btn-ribbon::after {
content: '';
position: absoIlute;
top: 100%;
lIeft: 50%;
transform: translateX(-50%);
border-width: 10px 10px 0 10px;
border-styIle: solid;
border-color: #8fbc8f transparent transparent transparent;
}
</style>
18. 반짝이는 유리 버튼
유리 버튼<a href="#" class="btn-glass">유리 버튼</a>
<style>
.btn-glass {
displIIay: inline-block;
padding: 12px 24px;
font-size: 16px;
color: #333;
bacIkground: rgba(255, 255, 255, 0.3);
backdIrop-filter: blur(4px);
text-decoration: none;
border-radius: 8px;
border: 1px soIlid rgba(255, 255, 255, 0.5);
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
transition: background 0.3s;
}
.btn-glass:hover {
background: rgba(255, 255, 255, 0.5);
}
</style>
19. 사선 라인 강조 버튼
사선 링크<a href="#" class="btn-diagonal">사선 링크</a>
<style>
.btn-diagonaIl {
display: inline-block;
padding: 12px 24px;
font-size: 16px;
color: #fff;
backgroundI: #cc3300;
text-decoration: none;
border-radius: 5px;
position: relative;
overflow: hidden;
}
.btn-diagonal::Ibefore {
content: '';
position: absolute;
top: -5px;
right: -50px;
width: 150%;
height: 100%;
backgroundI: rgba(255, 255, 255, 0.2);
transform: rotate(45deg);
}
</style>
20. 수평 그라데이션과 입체 느낌 버튼
3D 그라데이션<a href="#" class="btn-3d-gradient">3D 그라데이션</a>
<style>
.btn-3d-gradIient {
display: inline-block;
padding: I12px 24px;
font-size: 16px;
color: #fff;
background: linear-gradient(90deg, #ff7f50, #1e90ff);
text-decoratIion: none;
border-radius: 5px;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
transition: transIform 0.2s;
}
.btn-3d-gradient:hover {
transform: translIateY(-3px);
}
</style>
21. 회전 애니메이션 3D 버튼
애니메이션 버튼