HTML CSS만 사용하여 멋진 버튼 호버 효과 만들기
다음 중 하나만 필요합니다.
HTML 파일에서 "btn"(또는 원하는 이름)이라는 클래스가 있는 버튼을 만듭니다.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Awesome Button Hover Effect</title>
</head>
<body>
<button class="btn">Hover me</button>
</body>
</html>
HTML이 포함된 링크 CSS 파일을 잊지 마세요(head 태그에 있음).
<link rel="stylesheet" href="style.css">
CSS 파일에서:
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: rgb(8, 8, 8);
}
:root {
--main-color: rgb(180, 255, 68);
}
.btn {
position: relative;
padding: 12px 35px;
border: 3px solid var(--main-color);
border-radius: 0;
font-size: 17px;
background: none;
color: var(--main-color);
font-family: sans-serif;
}
.btn::before {
content: '';
position: absolute;
top: 0;
left: 0;
transform: translateY(-100%);
width: 100%;
height: 100%;
background-color: var(--main-color);
}
.btn:hover {
color: rgb(0, 0, 1);
}
.btn:hover::before {
z-index: -10;
transform: translateY(0);
}
.btn {
overflow: hidden;
}
.btn {
transition: 0.5s linear;
}
.btn:hover {
transition: 0.5s linear;
}
.btn::before {
transition: 0.5s linear;
}
.btn:hover::before {
transition: 0.5s linear;
}
.btn:hover {
filter: drop-shadow(0 0 50px var(--main-color));
}
@keyframes animate {
0% {
filter: drop-shadow(0 0 50px var(--main-color)) hue-rotate(0deg);
} 100% {
filter: drop-shadow(0 0 50px var(--main-color)) hue-rotate(360deg);
}
}
.btn {
animation: animate 3s linear infinite;
}
Reference
이 문제에 관하여(HTML CSS만 사용하여 멋진 버튼 호버 효과 만들기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/awcode0x/make-awesome-button-hover-effect-using-html-css-only-1abn텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)