티스토리 뷰

 

 

 

HTML

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <link rel="stylesheet" href="photo.css">
</head>
<body>
    <div class="container">
        <div class="left">
            <div class="top">
                <img class="long" id="i_1" src="image/1.jpg" alt="">
                <p id="a">sneakers for sports</p>
                <img class="short" id="i_2" src="image/2.jpg" alt="">
                <p id="b">i love shoes</p>
            </div>
            <div class="bottom">
                <img class="short" id="i_3" src="image/3.jpg" alt="">
                <p id="c">this is shoes</p>
                <img class="long" id="i_4" src="image/4.jpg" alt="">
                <p id="d">this is your presents</p>
            </div>
        </div>
        <div class="right">
            <img class="one" src="image/5.jpg" alt="">
        </div>
    </div>
</body>
</html>

 

 

CSS

*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}
.container{
    width: 80%;
    margin: 0 auto;
    display: flex;
    /* border: 1px solid red; */
    
    /* padding: 5px; */

}
.left{
    margin-top: 10px;
    width: 67%;
    /* border: 1px solid blue; */
    
}
.right{
    width: 30%;
    /* border: 1px solid green; */
    /* height: 100%; */
}
.top{
    /* height: 50%; */
    /* border: 1px solid purple; */
}
.bottom{
    /* height: 50%; */
    /* border: 1px solid black; */
}
.long{
    width: 65.5%;
    
}
.short{
    width: 30.6%;
    height: 200px;
}
.one{
    
    width: 100%;
    height: 100%;
    /* border: 1px solid orangered; */
    padding: 10px;
}
#i_1 ,#i_2,#i_3,#i_4{
    padding: 5px;
}
img{
    opacity: 1;
    transition: all 0.5s;
    position: relative;
    /* background-color: black; */
}
img:hover{
    opacity: 0.5;
    /* filter: brightness(70%); */
}
p{
    transition: all 0.5s;
    display: none;
    font-size: 20px;
}
#i_1:hover ~ #a{
    display: block;
    position: absolute;
    top:15%;
    left: 22%;
    z-index: 1;
}
#i_2:hover ~ #b{
    display: block;
    position: absolute;
    top:15%;
    left: 50%;
    z-index: 1;
}
#i_3:hover ~ #c{
    display: block;
    position: absolute;
    top:45%;
    left: 14%;
    z-index: 1;
}
#i_4:hover ~ #d{
    display: block;
    position: absolute;
    top:45%;
    left: 36%;
    z-index: 1;
}
.left *{
    width: 0 10%;
}
.right *{
    width: 0 10%;
}

 

 

 

* z-index=1; 은 abosulte하고 글자가 안보일때 사용을 했다.

이 경우 선택한 것이 제일 앞으로 오도록 해준다.

 

 

 

 

* 코드 작성시 순서를 지켜가면서 하기!

 

html

1. boxing

2. 코드

3. 돔 트리

 

 

css

1.* 기본 설정

(padding=0; margin=0; text-decoration=none; list-style:none; box-sizing=border-box;)

2. 제일 큰 div에서 전체적으로 쓸 width 값 주기

(margin:0 auto; 로 센터 맞추기)

3. 부모 요소에서 줄 것들 주기

4. 각 각 요소들 width 값 주기

5. justify or align 주기

6. margin, padding 등 미세 조정

 

 

js

1.변수

2. 함수

(중간 중간 console.log() 사용하여 값이 제대로 셀력 되었는지 확인하기)

 

 

 

 

 

 

 

11.30

*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}
.container{
    width: 80%;
    margin: 0 auto;
    display: flex;
    /* border: 1px solid red; */
}
.left{
    width: 70%;
    /* display: flex; */
    /* border: 1px solid blue; */
}
.right{
    width: 30%;
    /* border: 1px solid black; */
}
.top{
    width: 100%;
    /* border: 1px solid green; */
}
.bottom{
    width: 100%;
}
.long{
    width: 67%;
    /* border: 1px solid green; */
    padding: 10px 10px;
}
.short{
    width: 31.5%;
    padding: 10px 5px;
}
p{
    display: none;
}
.right img{
    width: 100%;
    height: 100%;
    padding: 10px 5px;
    
}
img{
    transition: all 0.3s;
}
#i_1{
    position: relative;
}
#i_2{
    position: relative;
}
#i_3{
    position: relative;
}
img:hover{
    filter: brightness(70%);
}
/* #a,#b,#c,#d{
    transition: all 1s;
} */
#i_1:hover ~ #a{
    position: absolute;
    display: block;
    top: 15%;
    left: 23%;
    z-index: 1;
    color: white;

}
#i_2:hover ~ #b{
    position: absolute;
    display: block;
    top: 16%;
    left: 53%;
    z-index: 1;
    color: white;

}
#i_3:hover ~ #c{
    position: absolute;
    display: block;
    top:48%;
    left: 15%;
    z-index: 1;
    color: white;
}
#i_4:hover ~ #d{
    position: absolute;
    display: block;
    top:48%;
    left: 40%;
    z-index: 1;
    color: white;
}

'코딩 > HTML&CSS' 카테고리의 다른 글

클론코딩 2  (1) 2023.12.01
회원가입 form  (2) 2023.11.29
슬라이드 연습  (1) 2023.11.24
[7주 2일차] HTML CSS  (1) 2023.11.21
[7주 2일차] 슬라이드  (1) 2023.11.21
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday