HTML
1
css
.item{position:relative;overflow:hidden;width:150px;height:150px;background:#fff;border:1px solid #ccc;text-align:center;border-radius:50%;cursor:pointer;} .item .num{padding-top:50px;} .item .desc{opacity:0;position:absolute;left:0;top:0;bottom:0; z-index:10; width:100%;color:#fff; background-color:rgba(0,0,0,.6); transition:all .2s;} .item:hover .desc {opacity:1;} .item .desc p {position:relative; transition:all .3s;top:8px;} .item:hover .desc p {top:0;}
예제
1
'HTML&CSS > HTML&CSS' 카테고리의 다른 글
[CSS] 양쪽 이미지 opacity처리하는 슬라이드 (0) | 2018.04.10 |
---|---|
[CSS] label for을 이용한 라디오, 체크박스 버튼 on, off (0) | 2017.11.23 |
[CSS] font awesome 아이콘 쉽게 사용하기 (1) | 2017.11.23 |
[HTML/CSS]간단한 페이징 css (0) | 2017.11.02 |