1) 인스타그램 Web UI 클론 코딩
2) 목적
3) 진행상황 : 반응형 데모, 헤더, 프로필 부분 구현
4) 개발 못한 부분 : 스토리, 메인 포스트 부분
instagram의 레이아웃을 반응형으로 만들고자 div설정으로 데모버전을 만들어 봄.
<!-- Required meta tags -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!--css 파일 불러오기!-->
<link href="/static/css/common.css" rel="stylesheet" type="text/css"/>
<title>Instgram clone</title>
</head>
<body>
<div class="column_1"></div>
<div class="column_2"></div>
</body>
</html>
.column_1 {
width: 300px;
height: 300px;
background-color: green;
float: left;
}
.column_2 {
width: 300px;
height: 300px;
background-color: blue;
float: left;
}
@media (max-width: 800px) {
.column_1 {
float: none;
}
.column_2 {
float: none;
}
}
width에 따라 달라지는 div구조
1) 로고 :웹페이지의 image파일 그대로 사용
2) 검색창
3) 메뉴 아이콘 버튼
4) 특징
1) 특징