Computer >> 컴퓨터 >  >> 프로그램 작성 >> CSS

CSS를 사용하여 버튼에 애니메이션을 적용하는 방법은 무엇입니까?

<시간/>

다음은 CSS로 버튼에 애니메이션을 적용하는 코드입니다 -

예시

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
button {
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   position: relative;
   background-color: rgb(100, 0, 84);
   border: none;
   font-size: 28px;
   color: rgb(255, 169, 255);
   padding: 20px;
   width: 200px;
   text-align: center;
   -webkit-transition-duration: 0.4s;
   box-shadow: 5px 10px 18px rgb(121, 82, 185);
   transition-duration: 0.4s;
   text-decoration: none;
   overflow: hidden;
   cursor: pointer;
}
button:after {
   content: "";
   background: rgb(251, 255, 0);
   display: block;
   position: absolute;
   padding-top: 300%;
   padding-left: 350%;
   margin-left: -20px;
   margin-top: -120%;
   opacity: 0;
   transition: all 0.8s
}
button:active:after {
   padding: 0;
   margin: 0;
   opacity: 1;
   transition: 0s
}
</style>
</head>
<body>
<h1>Animated Button Example</h1>
<button>Click Here</button>
<h1>Click on the above button to see ripple effect</h1>
</body>
</html>

출력

위의 코드는 다음 출력을 생성합니다 -

CSS를 사용하여 버튼에 애니메이션을 적용하는 방법은 무엇입니까?