Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
Tags
- git
- Java
- SSAFY
- SWEA
- django
- 2579
- 단어변환
- 프로젝트
- 자바
- 11562
- 타도
- 특정인덱스바꾸기
- 객체정렬
- K번째수
- 백준
- 7699
- 프로그래머스
- 그래프adt
- 명령어
- 10580번
- 진수 int형으로
- 스타일리쉬들여쓰기
- startswith
- 타겟넘버
- 시작
- 완주하지못한선수
- toCharArray()
- 전화번호목록
- 알고리즘
- 백양로브레이크
Archives
- Today
- Total
합리적 낙관주의자
이미지 hover시 글자 나타나게 하는 법 본문
.text {
opacity: 0;
}
.scale:hover .text {
opacity: 1;
top:50%;
left:50%;
background-color: #4CAF50;
color: white;
font-size: 16px;
/* padding: 16px 32px; */
}
.scale {
transform: scale(1);
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transition: all 0.3s ease-in-out; /* 부드러운 모션을 위해 추가*/
}
.scale:hover {
transform: scale(1.6);
-webkit-transform: scale(1.6);
-moz-transform: scale(1.6);
-ms-transform: scale(1.6);
-o-transform: scale(1.6);
opacity: 0.3;
}
.scale:hover .text {
opacity: 1;
top:50%;
left:50%;
background-color: #4CAF50;
color: white;
font-size: 16px;
/* padding: 16px 32px; */
}
'이상이 아닌 현실 💼 > Web 💻' 카테고리의 다른 글
Django 프로젝트 시작하기 (0) | 2020.09.14 |
---|---|
Django REST API 서버 구축 (0) | 2020.09.14 |
Forward, Send/Redirect (0) | 2020.04.24 |
02. Servlet Programming (0) | 2020.04.20 |
01-1. Web Application 관련 기술 (0) | 2020.04.15 |