HTML 및 CSS를 사용한 놀라운 카드 채우기 호버
오늘 저는 HTML과 CSS를 사용하여 놀라운 카드 채우기 호버를 만들었습니다. 이 카드에서는 호버 애니메이션에 HTML과 CSS만 사용하고 있습니다.
최근 게시물 확인:
HTML과 JS를 사용한 놀라운 버튼 애니메이션
Nikhil Bobade ・ 6월 22일 ・ 1분 읽기
#html
#webdev
#css
#javascript
<div class="row">
<div class="card">
<h4>What is a Frontend Develoment?</h4>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ullam porro similique aliquid debitis ipsam soluta dolorum ipsa! Voluptate, suscipit iure.</p>
</div>
</div>
이것은 카드에 사용하는 간단한 html입니다. 호버 효과의 경우 위치에
card::before
태그를 사용하고 있으며 호버 후에는 .card:hover::before
속성의 크기만 조정합니다.@import url("https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&subset=devanagari,latin-ext");
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
body {
background-color: #343a40;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
user-select: none;
}
.card {
border-radius: 10px;
filter: drop-shadow(0 5px 10px 0 #ffffff);
width: 400px;
height: 180px;
background-color: #ffffff;
padding: 20px;
position: relative;
z-index: 0;
overflow: hidden;
transition: 0.6s ease-in;
}
.card::before {
content: "";
position: absolute;
z-index: -1;
top: -15px;
right: -15px;
background: #7952b3;
height:220px;
width: 25px;
border-radius: 32px;
transform: scale(1);
transform-origin: 50% 50%;
transition: transform 0.25s ease-out;
}
.card:hover::before{
transition-delay:0.2s ;
transform: scale(40);
}
.card:hover{
color: #ffffff;
}
.card p{
padding: 10px 0;
}
게시물에서 이것이 유용하다고 생각하고 이 게시물을 저장하면 게시물에 대한 귀하의 생각과 새로운 아이디어에 대한 댓글도 달 수 있습니다.
더 많은 콘텐츠를 보려면 Instagram에서 저를 팔로우하세요.
고맙습니다!
Reference
이 문제에 관하여(HTML 및 CSS를 사용한 놀라운 카드 채우기 호버), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/nikhil27b/amazing-card-fill-hover-using-html-css-20i텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)