I'm

Developer, Designer, Photographer

GET IN TOUCH

  • Buk-gu, Busan, Republic of Korea
  • ungdoli0916@naver.com
  • Kakao ID : Ungdoli
Your message has been sent. Thank you!
(즐거웅코드) CSS 책 표지 입체적으로 보이게 하기 (그림자 활용)

· 즐거'웅' 코드 (Source)/HTML & CSS & JAVASCRIPT
2021. 9. 27. 21:06

반응형

[즐거'웅'코드] 목차

  1. 예제 소스
  2. 구현 예시
예제 소스
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
<style>
    .test_obj {
        position: relative;
        display: inline-block;
        width: 200px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
    }
 
    .test_obj:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, rgba(0, 0, 0, 0.2) 0px, transparent 5%, transparent 95%, rgba(0, 0, 0, 0.2) 100%);
    }
 
    .test_obj img {
        width: 100%;
    }
</style>
 
<div class="test_obj">
    <img src="images/test.png">
</div>
구현 예시
반응형