Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Absolute
- AGI
- ai
- AI agents
- AI engineer
- AI researcher
- ajax
- algorithm
- Algorithms
- aliases
- Array 객체
- ASI
- bayes' theorem
- Bit
- Blur
- BOM
- bootstrap
- canva
- challenges
- ChatGPT
Archives
- Today
- In Total
A Joyful AI Research Journey🌳😊
230210 CSS 마우스 올렸을 때 이미지 확대하기: blog-slider 본문
💻Bootcamp Self-Study Revision✨/HTML5, CSS, Bootstrap, JSP
230210 CSS 마우스 올렸을 때 이미지 확대하기: blog-slider
yjyuwisely 2023. 3. 29. 21:50230210
마우스 올렸을 때 이미지 크기가 커진다.
/* 마우스 올렸을 때 이미지가 커진다.*/
img {
max-width: 100%;
}
.blog-slider__img {
width: 280px;
margin: 0px auto;
overflow: hidden;
}
.blog-slider__img img {
transition: all 0.2s linear;
}
.blog-slider__img:hover img {
transform: scale(1.5); /*확대 배수*/
}
728x90
반응형
'💻Bootcamp Self-Study Revision✨ > HTML5, CSS, Bootstrap, JSP' 카테고리의 다른 글
CSS: 배경 투명도 Opacity 조정할 때 텍스트는 그대로 유지하는 법: rgba 사용하기 (0) | 2023.04.06 |
---|---|
230208 CSS 포커스 이용해서 input 눌렀을 때 border에 효과 주기 (0) | 2023.03.30 |
230213 CSS 테이블 만들기: display: table, display: table-cell (0) | 2023.03.29 |
230213 CSS 우선순위: 인라인 스타일 > 아이디 > 클래스 > 요소 (0) | 2023.03.29 |
Comments