ย
์ด๋ฒ ์๊ฐ์๋ ํ๋ก์ฐ ๊ธฐ๋ฅ๊ณผ ๋ฌดํ ์คํฌ๋กค ๊ธฐ๋ฅ์ ์ถ๊ฐํด๋ณด๋๋ก ํ๊ฒ ์ต๋๋ค.
์์ง ํ๋ก์ฐ ๋ฒํผ์ด ๋ง๋ค์ด์ง์ง ์์์ต๋๋ค. ๊ทธ๋ ๊ธฐ ๋๋ฌธ์ ํ๋ก์ฐ๋ฅผ ๋ํ๋ด๋ toggle_box๋ฅผ ๋ง๋ค๊ณ ํ๋ก์ฐ์ ์์ , ์ญ์ ๋ฅผ ๋ง๋ค์ด ๋ณด๋๋ก ํ๊ฒ ์ต๋๋ค.
ย
ํ์ผ๋ช
:
js/main.js
... }else if(elem.matches('[data-name="comment_delete"]')){ $.ajax({ Method:'POST', /* ์๋ฌ๋ ๊ฒฝ์ฐ GET์ผ๋ก ๋ณ๊ฒฝํ๊ธฐ */ url:'data/delete.json', data: { 'pk': 37, /* 'pk':pk */ }, dataType:'json', success: function(response){ if(response.status){ let comt = document.querySelector('.comment-detail'); comt.remove(); } }, error:function(request, status ,error){ alert('๋ฌธ์ ๊ฐ ๋ฐ์ํ์ต๋๋ค..'); window.location.replace('https://www.naver.com'); // ์์ ์๋ฌ ์น ํ์ด์ง } }) }else if(elem.matches('[data-name="follow"]')){ $.ajax({ Method:'POST', url:'data/follow.json', data: { 'pk': 37, }, dataType:'json', success: function(response){ if(response.status){ document.querySelector('input.follow').value="ํ๋ก์"; }else{ document.querySelector('input.follow').value="ํ๋ก์ "; } }, error: function(request, status, error){ alert('๋ฌธ์ ๊ฐ ๋ฐ์ํ์ต๋๋ค..'); window.location.replace('https://www.naver.com'); // ์์ ์๋ฌ ์น ํ์ด์ง } }) }else if(elem.matches('[data-name="share"]')){ console.log("๊ณต์ !"); }if(elem.matches('[data-name="more"]')){ console.log("๋๋ณด๊ธฐ!"); } elem.classList.toggle('on'); // on ํด๋์ค ์ฃผ๊ธฐ } ...
ย
์ฌ๊ธฐ์ input์ ๊ฐ์ ํ๋ก์, ํ๋ก์ ๊ฐ๊ณ ์๋ ์ด์ ๋ input์ submit์ด๋ผ๋ ํ๊ทธ๋ฅผ ํ์ฉํ ๊ฒ์
๋๋ค. submit์ ๋ฒํผ์ธ๋ฐ ๊ฐ์ ๋ฐ๋ผ ๊ธ์๊ฐ ๋ฐ๋๋๋ค.
ย
ํ์ผ๋ช
:
index.html
... <header class="top"> <div class="user_container"> <div class="profile_img"> <img src="imgs/thumb.jpeg" alt="ํ๋กํ์ด๋ฏธ์ง"> </div> <div class="user_name"> <div class="nick_name m_text">KindTiger</div> <div class="country s_text">Seoul, South Korea</div> </div> </div> <div class="sprite_more_icon" data-name="more"> <ul class='toggle_box'> <li><input type="submit" class="follow" value="ํ๋ก์ฐ" data-name="follow"></li> <li>์์ </li> <li>์ญ์ </li> </ul> </div> </header> ...
ย
ํ์ผ๋ช
:
css/style.css
... .contents .sprite_more_icon.on .toggle_box{ display:block; } .contents .toggle_box{ text-align:center; position:absolute; height:0; top:20px; border: 1px solid rgba(0,0,0,0.09); border-radius: 3px; display:none; } .contents .toggle_box > li{ padding: 5px 10px; background: #fff; } .contents .img_section{ overflow:hidden; /* ์์์ด ๋ถ๋ชจ์ ํฌ๊ธฐ๋ฅผ ๋์ง ์๋๋ก ํ๋ค */ } .contents .img_section img{ width: 100%; } .contents .toggle_box > li input{ border:none; font-size: inherit; } ...
ย
ย
ํ์ผ๋ช
:
data/follow.json
{ "message": "ํ๋ก์ฐ", "status": "0" }
ย
๊ทธ๋ฌ๋ฉด ๋๋ฅด๋ ์๊ฐ ํ๋ก์์ผ๋ก ๊ธ์๊ฐ ๋ฐ๋๋ ๊ฒ์ ๋ณผ ์ ์์ต๋๋ค.
ย
๋ง์ง๋ง์ผ๋ก ๋ฌดํ์คํฌ๋กค ๊ธฐ๋ฅ์ ์ถ๊ฐํด๋ณด๋๋ก ํ๊ฒ ์ต๋๋ค.
์ผ๋จ ๋ฌดํ์คํฌ๋กค ๊ธฐ๋ฅ์ ํ
์คํธ ํ๊ธฐ ์ํด์ article ๋ถ๋ถ์ ์ฌ๋ฌ๊ฐ ๋ณต์ฌํ์ฌ ์ฌ๋ฌ ์ปจํ
์ธ ๊ฐ ๋์ค๋๋ก ํ๊ฒ ์ต๋๋ค. ๋ํ id๊ฐ page์ธ input ํ๊ทธ๋ฅผ ํ๋ ๋ง๋ค์ด์ ํ์ด์ง ๊ฐ์๋ฅผ ์ฒดํฌํด์ฃผ๋๋ก ํ๊ฒ ์ต๋๋ค.
ํ์ผ๋ช
:
index.html
... <div class="contents_box"> <article class="contents"...> <article class="contents"...> <article class="contents"...> </div> <input type="hidden" id="page" value="0"> ...
id ๊ฐ์ ์ถฉ๋๋ก ์ธํด์ ์ค๋ฅ๊ฐ ๋ฐ์ํ์ง๋ง backend ๋ถ๋ถ์์ id ๊ฐ์ด ๋ฐ๋๊ธฐ ๋๋ฌธ์ ์ผ๋จ์ ๊ณ ๋ คํ์ง ์์ผ์
๋ ๋ฉ๋๋ค.
์ผ์ ์คํฌ๋กค ์ด์์ผ๋ก ๋ด๋ ค๊ฐ๊ฒ ๋๋ฉด Ajax๋ก ๋ค๋ฅธ ํฌ์คํธ๋ฅผ ์ ์กํ๋ผ๋ ๋ฉ์ธ์ง๋ฅผ ๋ณด๋ด๋๋ก ์ฝ๋๋ฅผ ์์ฑํ๋๋ก ํ๊ฒ ์ต๋๋ค.
ย
ํ์ผ๋ช
:
js/main.js
... function scrollFunc(){ let scrollHeight = pageYOffset+window.innerHeight; let documentHeight = document.body.scrollHeight; // console.log(pageYOffset) console.log('scrollHeight : '+scrollHeight) console.log('documentHeight : '+documentHeight) // console.log(pageYOffset); if(pageYOffset >= 10){ // ๋๋๊ทธํ ๊ฒฝ์ฐ header.classList.add('on'); if(sidebox){ sidebox.classList.add('on'); }resizeFunc(); }else{ header.classList.remove('on'); if(sidebox){ sidebox.classList.remove('on'); sidebox.removeAttribute('style'); } } if(scrollHeight >= documentHeight){ let page = document.querySelector('#page').value; document.querySelector('#page').value= parseInt(page) + 1; callMorePostAjax(page); if(page > 5){ return; } } } function callMorePostAjax(page){ if(page > 5){ return; } $.ajax({ Method:'POST', url:'./post.html', data:{ 'page':page, }, dataType:'html', success: addMorePostAjax, error: function(request, status, error){ alert('๋ฌธ์ ๊ฐ ๋ฐ์ํ์ต๋๋ค.'); window.location.replace('https://www.naver.com'); } }) } function addMorePostAjax(data){ deligation.insertAdjacentHTML('beforeEnd',data); } ...
ย
scrollHeight = pageYOffset+window.innerHeight; ์์ pageYOffset์ ํ๋ฉด์ ์ด๋ ์ ๋ ๋ด๋ ธ๋์ง๋ฅผ ์๋ฏธํ๋ y๊ฐ์ด๊ณ window.innerHeight๋ ํ๋ฉด์ ์ธ๋ก ๊ฐ์ ์๋ฏธํ๋ค๊ณ ๋ณด๋ฉด ๋ฉ๋๋ค.
๋ ๊ฐ์ ํฉ์ ์คํฌ๋กค์ ๊ธธ์ด ๊ฐ์ธ documentHeight = document.body.scrollHeight; ์ ๋์ผํด์ง ๊ฒฝ์ฐ๊ฐ ์คํฌ๋กค์ ์ ๋ถ ์๋๋ก ๋ด๋ฆฐ ์ํฉ์ด๋ผ๊ณ ํ ์ ์์ต๋๋ค.
ย
๋ฐ๋ผ์ ํด๋น ์กฐ๊ฑด์ ๊ฒฝ์ฐ์ Ajax ํต์ ์ ํตํด์
post.html
์ index.html
์ ์ถ๊ฐํ๋๋ก ์์ค์ฝ๋๋ฅผ ์์ฑํ์์ต๋๋ค.ย
ํ์ผ๋ช
:
post.html
<article class="contents"...>
ย
๊ทธ๋ฌ๋ฉด ์คํฌ๋กคํ ๋๋ง๋ค ํฌ์คํธ๊ฐ ๊ณ์ ์ถ๊ฐ๋๋ ๊ฒ์ ๋ณผ ์ ์์ต๋๋ค.
ย
์ด๋ ๊ฒ frontend ๊ตฌํ์ ๋ง์น๊ณ ๋ค์ backend ๋ถ๋ถ ๊ตฌํ์ ๋ค์ด๊ฐ ๋ณด๋๋ก ํ๊ฒ ์ต๋๋ค.
์์ฑ๋ ์ฝ๋๋ ์๋์ ๊ฐ์ต๋๋ค.
ย
ํ์ผ๋ช
:
css/style.css
.sprite_insta_icon{ display: inline-block; background: url('../imgs/background01.png') no-repeat -53px -235px; width: 22px; height: 22px; } .sprite_write_logo{ display: inline-block; background: url('../imgs/background01.png') no-repeat -94px -72px; width: 103px; height: 29px; } .sprite_compass_icon{ display: inline-block; background: url('../imgs/background01.png') no-repeat -130px -286px; width: 23px; height: 23px; } .sprite_user_icon_outline{ display: inline-block; background: url('../imgs/background01.png') no-repeat -272px -182px; width: 22px; height: 24px; } .sprite_heart_icon_outline{ display: inline-block; background: url('../imgs/background01.png') no-repeat -52px -261px; width: 24px; height: 22px; } .sprite_small_search_icon{ display: inline-block; background: url('../imgs/background01.png') no-repeat -337px -246px; width: 10px; height: 10px; } .sprite_more_icon{ display: inline-block; background: url('../imgs/background01.png') no-repeat -301px -218px; width: 15px; height: 3px; } .sprite_bubble_icon{ display: inline-block; background: url('../imgs/background01.png') no-repeat -239px -202px; width: 24px; height: 24px; } .sprite_share_icon{ display: inline-block; background: url('../imgs/background01.png') no-repeat -324px -52px; width: 21px; height: 24px; } .sprite_bookmark_outline{ display: inline-block; background: url('../imgs/background01.png') no-repeat -237px -286px; width: 19px; height: 24px; } .sprite_bookmark_outline.on { background: url('../imgs/background01.png') no-repeat -159px -286px; width: 19px; height: 24px; } .sprite_bookmark_outline.on{ background: url('../imgs/background01.png') no-repeat -159px -286px; width: 19px; height: 24px; } .sprite_small_heart_icon_outline{ display: inline-block; background: url('../imgs/background01.png') no-repeat -323px -274px; width: 12px; height: 11px; } .sprite_camera_icon{ display: inline-block; background: url('../imgs/background01.png') no-repeat -271px -104px; width: 24px; height: 22px; } .sprite_insta_big_logo{ display: inline-block; background: url('../imgs/background02.png') no-repeat -98px -150px; width: 175px; height: 51px; } .sprite_plus_icon{ display: inline-block; background: url('../imgs/background01.png') no-repeat -187px -202px; width: 23px; height: 23px; } body{ background: #fafafa; } #header{ width: 100%; /* ๊ณต์ค์ ๋จ๊ธฐ ์ํจ */ position: absolute; /* ๊ฐ์ฅ ์์ ์ฌ๋ผ๊ฐ ์์ด์ผ ํ๊ธฐ ์ํจ */ z-index: 999; /* absolute์ ๊ฒฝ์ฐ ์ต์ x์ถ์์ 1๊ฐ y์ถ์์ 1๊ฐ์ ๊ฐ์ ์ฃผ์ด์ผ ํจ */ left: 0; top: 0; background: white; border-bottom: 1px solid rgba(0,0,0,0.1); } #header.on{ position: fixed; /* ์๋จ์ ๊ณ ์ ๋์ ๊ฐ์ด ์์ง์ */ } #header .inner{ /* inner ์์ ์ปจํ ์ธ ๋ฅผ ๋ฃ์ผ๋ฉด ์์ ๊ฐ์ด ๋ค์ด์ด */ width: 975px; height: 77px; margin: 0 auto; /* ๊ฐ์ด๋ฐ ์ ๋ ฌ */ display: flex; /* ๊ฐ๋ก ๋ฐฐ์น */ justify-content: space-between; /* x์ถ ์ ๋ ฌ_๊ณต๊ฐ์ ์๋์ผ๋ก ๋ถ๋ฐฐํจ */ align-items: center; /* y์ถ ์ ๋ ฌ */ transition: all 1s; /* ์์ฐ์ค๋ฌ์ด ํจ๊ณผ */ } #header.on .inner{ height: 52px; } #header .inner .logo > a{ color: transparent; /* ๋ฐฐ๊ฒฝ์์ ํฌ๋ช ํ๊ฒ ๋ง๋ฌ */ } #header .inner .logo div{ vertical-align: middle; } #header .inner .logo .sprite_insta_icon{ position: relative; /* after์๊ฒ ์์น ๊ธฐ์ค์ ์ ๋ฌํด์ฃผ๊ธฐ ์ํจ */ margin-right: 30px; } #header .inner .logo .sprite_insta_icon:after{ content: ''; /* ๊ณต๋ฐฑ์ ๋ฐ์์ด */ width: 1px; height: 28px; background: #000; position: absolute; /* ๋ถ๋ชจ๋ฅผ ๊ธฐ์ค์ผ๋ก ์์น๋ฅผ ์ก์ */ right: -15px; top: -4px; transition: all .5s; } #header .search_box{ position: relative; /* ๊ธฐ์ค์ ์ ์ก๊ณ ๊ฐ๋ก ๋ฐฐ์น */ } #search-field{ width: 185px; height: 28px; background: #fafafa; border: 1px solid #dbdbdb; border-radius: 3px; padding: 3px 30px; /* ์์๋ ์์ชฝ */ color: #999; font-weight: 400; text-align: left; /* ๊ธ์ ์ ๋ ฅ ์ ์ผ์ชฝ๋ถํฐ ๋ณด์ด๋๋ก ํ๊ธฐ ์ํจ */ font-size: 14px; outline: none; /* ํฌ์ปค์ค ํ์ ๋ ๋ํ๋๋ ํ๋์ */ } #search-field::placeholder{ /* ์ฝ๋ก 2๊ฐ(::) - ์์ฑ์ ํ์ */ font-size: 0; /* ํฌ์ปค์ค๊ฐ ๋์ง ์์ ๋ ๊ฒ์ ๊ธ์๊ฐ ๋ณด์ด์ง ์๋๋ก ํ๊ธฐ ์ํจ */ } #search-field:focus::placeholder{ font-size: 14px; /* ํฌ์ปค์ค ๋์์ ๋ ๊ฒ์ ๊ธ์๊ฐ ๋ณด์ด๋๋ก ํ๋ค */ } #header .search_box .fake_field{ position: absolute; /* ๊ฒ์ ์ฐฝ ์์ ๊ธ์๋ฅผ ๋ณด์ด๊ธฐ ์ํจ */ /* ๊ฐ์ด๋ฐ ๋ฐฐ์นํ๋ ๊ณต์ */ left: 50%; top: 50%; transform: translate(-50%, -50%); pointer-events: none; /* ๊ฒ์์ ๋๋ ์ ๋์๋ ํฌ์ธํฐ ์ธ์์ด ์ ๋จ */ } /* ๋ฌผ๊ฒฐ(~) - ๊ทผ์ฒ์ ์๋ fake_field */ #search-field:focus~.fake_field > span:nth-child(1){ transform: translateX(-105px); /* ๋๋ณด๊ธฐ๋ฅผ ์ผ์ชฝ์ผ๋ก ์ด๋ */ } #search-field:focus~.fake_field > span:nth-child(2){ display: none; /* ํฌ์ปค์ค ๋์์ ๋ ๊ธ์ ์จ๊ธฐ๊ธฐ */ } #header .right_icons{ width: 132px; /* ๋ถ๋ชจ๊ฐ ์ข์ฐ๊ฐ ๊ณ ์ */ display: flex; justify-content: space-between; /* x์ถ ์ ๋ ฌ_๊ณต๊ฐ์ ์๋์ผ๋ก ๋ถ๋ฐฐํจ */ } #header .inner .logo div:nth-child(2){ transform: translateY(2px); transition:all .5s; } #header.on .inner .logo .sprite_insta_icon:after{ opacity:0; } #header.on .inner .logo div:nth-child(2){ opacity:0; } /* ์์ด์ฝ ์ฌ๋ผ์ง๊ฒ ํ๋ ๋ถ๋ถ */ #header .inner .logo .sprite_insta_icon{ position: relative; /* after์๊ฒ ์์น ๊ธฐ์ค์ ์ ๋ฌํด์ฃผ๊ธฐ ์ํจ */ margin-right: 30px; } #main_container{ padding-top: 130px; display: flex; /* ์ปจํ ์ธ ๊ฐ ๊ฐ์ด๋ฐ์ ์์นํ ์ ์๋๋ก ํจ */ justify-content: center; /* x์ถ ๊ฐ์ด๋ฐ ์ ๋ ฌ */ } #main_container .inner{ width: 935px; /* height: 500px; */ /* background: red; */ position: relative; /* ๊ธฐ์ค์ ์ inner๋ก ๋ณ๊ฒฝํ๊ธฐ ์ํจ */ } .contents_box{ } .contents{ width: 614px; /* height: 500px; */ border: 1px solid rgba(0,0,0,0.09); border-radius: 3px; /* ํ ๋๋ฆฌ๋ฅผ ๋ฅ๊ธ๊ฒ ๋ง๋ฌ */ margin-bottom: 60px; /* ๋ค๋ฅธ contents๋ค์ด ๋ฐ๋ ค์ผ ๋๊ธฐ ๋๋ฌธ์ ์ฌ์ด์ ์ฌ๋ฐฑ์ ์ค๋ค */ background: white; } .contents .top{ display: flex; /* ๊ฐ๋ก ๋ฐฐ์น */ justify-content: space-between; /* x์ถ ์ ๋ ฌ_๊ณต๊ฐ์ ์๋์ผ๋ก ๋ถ๋ฐฐ */ align-items: center; padding: 10px 20px; /* ์์๋ ์์ชฝ */ } .contents .top .profile_img{ width: 32px; height: 32px; border-radius: 50%; /* ํ ๋๋ฆฌ๋ฅผ ๋ฅ๊ธ๊ฒ ์ค์ 50% -> ์์ ํํ */ overflow: hidden; /* ์์์ด ํฌ๊ธฐ๊ฐ ๋์น์ง ์๋๋ก ํ๋ค */ margin-right: 10px; } .contents .top .profile_img img{ width: 100%; /* 100%๊ฐ ์์ ๊ฒฝ์ฐ ์ด๋ฏธ์ง๊ฐ ๋ค์ด๊ฐ์ง ์์ */ } .contents .top .user_container{ display: flex; /* ๊ฐ๋ก ๋ฐฐ์น */ } .m_text{ font-size: 14px; font-weight: bold; } .s_text{ font-size: 12px; } .contents .sprite_more_icon.on .toggle_box{ display:block; } .contents .toggle_box{ text-align:center; position:absolute; height:0; top:20px; border: 1px solid rgba(0,0,0,0.09); border-radius: 3px; display:none; } .contents .toggle_box > li{ padding: 5px 10px; background: #fff; } .contents .img_section{ overflow: hidden; /* ์์์ด ๋ถ๋ชจ์ ํฌ๊ธฐ๋ฅผ ๋์ง ์๋๋ก ํ๋ค */ } .contents .img_section img{ width: 100%; /* ๋ถ๋ชจ์ ํฌ๊ธฐ 100%๋ฅผ ๋ฐ๋๋ค */ } .contents .toggle_box > li input{ border:none; font-size: inherit; } .contents .bottom_icons{ display: flex; /* ๊ฐ๋ก ๋ฐฐ์น */ justify-content: space-between; /* x์ถ ์ ๋ ฌ_๊ณต๊ฐ์ ์๋์ผ๋ก ๋ถ๋ฐฐํจ */ align-items: center; /* y์ถ ๊ฐ์ด๋ฐ ์ ๋ ฌ */ padding: 10px 20px; } .contents .bottom_icons .left_icons{ display: flex; /* ๊ฐ๋ก ๋ฐฐ์น */ } .contents .bottom_icons .left_icons > div{ margin-right: 10px; } /* .heart_btn.on .sprite_heart_icon_outline */.sprite_heart_icon_outline.on{ background: url('../imgs/background01.png') no-repeat -26px -261px; } .contents .likes{ padding: 5px 20px; color: #262626; } .contents .comment_container{ display: flex; /* ๊ฐ๋ก ๋ฐฐ์น */ justify-content: space-between; align-items: center; padding: 5px 20px; } .contents .comment_container .comment{ display: flex; /* ๊ฐ๋ก ๋ฐฐ์น */ flex-direction: column; font-size: 14px; } .contents .comment_container .comment-detail{ display: flex; /* ๊ฐ๋ก๋ฐฐ์น */ } .contents .comment_container .comment .nick_name{ margin-right: 10px; /* ์์ด๋์ ๋๊ธ ๊ฐ์ ๊ฑฐ๋ฆฌ ์ค์ */ } .contents .comment_container .comment .nick_name{ margin-right: 10px; /* ์์ด๋์ ๋๊ธ ๊ฐ์ ๊ฑฐ๋ฆฌ ์ค์ */ } .contents .timer{ font-size: 10px; letter-spacing: 0.2px; /* ์๊ฐ ์กฐ์ */ color: #999; border-bottom: 1px solid rgba(0,0,0,0.09); /* ์๋์ชฝ ์ค์ ์ถ๊ฐ */ padding: 10px 20px; } .contents .comment_field{ min-height: 56px; padding: 0 20px; position: relative; /* ์์๋ค์ด absolute๋ก ์๋ฆฌ๋ฅผ ์ก๊ธฐ ์ํจ */ } .contents .comment_field input{ width: 100%; height: 56px; border: none; outline: none; background: transparent; /* ํฌ๋ช ํ๊ฒ ์ค์ */ } .contents .comment_field input:focus ~ .upload_btn{ pointer-events: initial; /* ํฌ์ธํฐ ์ด๋ฒคํธ ์ด๊ธฐํ */ opacity: 1; } .contents .comment_field .upload_btn{ color: #3897f0; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); /* y์ถ์ผ๋ก ์ค์ ์ ๋ ฌ */ cursor: pointer; /* pointer-events: none; ์ฒ์์๋ ํด๋ฆญ์ด ๋์ง ์๋๋ก ํ๋ค */ opacity: 0.6; } .contents .bottom_icons .right_icon > div{ cursor: pointer; /* ๋๋ฅผ ์ ์๋๋ก ํ๊ธฐ ์ํจ */ } .side_box{ width: 293px; /* height: 300px; */ /* background: rgba(255,0,0,0.16); */ position: absolute; /* ๋ถ๋ชจ๋ฅผ ๊ฐ๋ ๊ธฐ์ค์ ์ ์ก์ง ์์ผ๋ฉด ๊ผญ๋๊ธฐ๊น์ง ์ฌ๋ผ๊ฐ */ right: 0; top: 0; } .side_box.on{ position: fixed; /* ํ๋ฉด์ ๊ณ ์ */ top: 80px; } .side_box .profile_thumb{ width: 50px; height: 50px; border-radius: 50%; overflow: hidden; /* ์ด๋ฏธ์ง๊ฐ ๋์น์ง ์๋๋ก ํ๋ค */ margin-right: 10px; } .side_box .profile_thumb img{ width: 100%; height: 100%; } .side_box .user_profile{ display: flex; /* ๊ฐ๋ก ๋ฐฐ์น */ align-items: center; font-size: 14px; color: #262626; } .side_box .detail .id{ margin-bottom: 5px; } .side_box .detail .ko_name{ font-size: 12px; color: #999; } .side_box > article{ border: 1px solid rgba(0,0,0,0.09); border-radius: 3px; margin-bottom: 20px; width: 291px; font-size: 14px; color: #262626; font-weight: bold; background: white; } .side_box > article > header{ display: flex; /* ๊ฐ๋ก ๋ฐฐ์น */ align-items: center; justify-content: space-between; padding: 15px 20px; color: #999; } .side_box > article > header .more{ font-size: 12px; color: #262626; cursor: pointer; } .thumb_user{ display: flex; align-items: center; padding: 10px 20px; } .thumb_user .profile_thumb{ width: 34px; /* ํฌ๊ธฐ๊ฐ ์ข ๋ ์๊ฒ ๋ง๋ฌ */ height: 34px; } .thumb_user .time{ font-size: 10px; letter-spacing: 0.2px; color: #999; } .side_box .scroll_inner{ height: 182px; overflow-x: hidden; /* x์ถ_์์์ด ๋ถ๋ชจ ๋์ง ๋ชปํ๊ฒ ํ๋ค */ overflow-y: auto; /* ์๋์ผ๋ก ์คํฌ๋กค์ ๋ณด์ฌ์ฃผ๊ฑฐ๋ ์จ๊น */ /* overflow: hidden auto; x์ถ, y์ถ ํ๋ฒ์ ์ค์ */ } .hidden_menu{ display: none; width: 600px; /* background: red; */ position: absolute; left: 50%; transform: translateX(-50%); /* x์ถ ๊ฐ์ด๋ฐ ์ ๋ ฌ */ top: 100px; overflow: hidden; /* ์์๋ค์ด ๋์น์ง ์๋๋ก ํ๋ค */ border: 1px solid rgba(0,0,0,0.09); border-radius: 3px; } .hidden_menu .scroll_inner{ height: 100px; /* ๋์ด๊ฐ์ ์์์๊ฒ ์ค๋ค */ width: auto; overflow-x: auto; /* ํญ๋ชฉ์ด ๋ง์์ง ๊ฒฝ์ฐ ์์์ ์คํฌ๋กค์ด ์์ฑ */ overflow-y: hidden; display: flex; /* ๊ฐ๋ก๋ฐฐ์น */ align-items: center; padding: 0 10px; } .hidden_menu .scroll_inner .user{ width: 80px; height: 80px; display: flex; flex-direction: column; /* ๊ฐ๋ก ์ค์ ์ ๋ ฌ์ ์ธ๋ก ์ค์ ์ ๋ ฌ๋ก ๋ณ๊ฒฝ */ align-items: center; margin-right: 15px; justify-content: space-between; /* ์ด๋ฏธ์ง๋ ์๋ก ์์ด๋๋ ์๋๋ก ์ค์ */ } .hidden_menu .scroll_inner .user .id{ font-size: 12px; color: #262626; } .hidden_menu .thumb_img{ width: 56px; height: 56px; border-radius: 50%; overflow: hidden; } .hidden_menu .thumb_img img{ width: 100%; height: 100%; } @media screen and (max-width:1000px){ #header .inner{ width: 97.5%; } #main_container{ padding-top: 220px; } #main_container .inner{ width: 93.5%; } .contents_box{ display: flex; flex-direction: column; /* ์ธ๋ก ๋ฐฐ์น ๋ฐ๋๋ก ํ๋ค */ align-items: center; /* ์ผ์ชฝ์ผ๋ก ์น์ฐ์ณ ์ง๋ ๊ฑธ ๋ฐฉ์ง */ } .side_box{ /* ์ฌ์ด๋ ๋ฐ์ค ์จ๊ธฐ๊ธฐ */ display: none; } .hidden_menu{ display: block; } } @media screen and (max-width:650px){ #header .search_box{ display: none; } .hidden_menu{ width: 95%; } }
ย
ํ์ผ๋ช
:
js/main.js
/* const heart = document.querySelector( '.heart_btn'); // ํํธ ์์ ๋ถ๋ถ์ ์ ํํด์ ๊ฐ์ ธ์ด */ const header = document.querySelector('#header'); const sidebox = document.querySelector( '.side_box'); // SelectorAll์ ํ์ฉํด ๋ชจ๋ ์์๋ฅผ ๊ฐ์ ธ์ด const variableWidth = document.querySelectorAll(".contents_box .contents"); const deligation = document.querySelector(".contents_box"); /* heart.addEventListener('click', function(){ console.log('hit'); heart.classList.toggle('on'); // ํํธ๋ฅผ ํด๋ฆญํ๋ฉด .on ํด๋์ค๋ฅผ ์ถ๊ฐ }); */ function deligationFunc(e){ let elem = e.target; // ํด๋ฆญํ ์์ ๊ฐ์ ธ์ค๊ธฐ // console.log(e.target); // console.log(elem); // ์๋ชป ํด๋ฆญํ ๊ฒฝ์ฐ while(!elem.getAttribute('data-name')){ // elem์ ๋ถ๋ชจ๋ฅผ ์ฐพ์ elem = elem.parentNode; if(elem.nodeName ==='BODY'){ // body๊น์ง ์ด๋ฒคํธ๊ฐ ์๋ ๊ฒฝ์ฐ elem=null; return; } // data-name์ ๊ฐ์ง ์์ฑ์ ์ฐพ์๋๊น์ง ๋ถ๋ชจ์๊ฒ ์ ๊ทผ์ ๋ฐ๋ณต } if(elem.matches('[data-name="heartbeat"]')){ // console.log("ํํธ!"); let pk=elem.getAttribute('name'); // pk๊ฐ์ ๋ฐ์์จ๋ค $.ajax({ Method:'POST', // ์๋ฌ๋ ๊ฒฝ์ฐ GET์ผ๋ก ๋ณ๊ฒฝํ๊ธฐ url:'data/like.json', data: {pk}, dataType:'json', // ์ด๋ป๊ฒ ๋ค์ด์ฌ์ง ์ค์ success: function(response){ // ํต์ ์ ์ฑ๊ณตํ ๋ฐ์ดํฐ๊ฐ response๋ก ๋ค์ด์จ๋ค let likeCount =document.querySelector('#like-count-37'); likeCount.innerHTML = '์ข์์' + response.like_count +'๊ฐ'; }, error: function(request,status,error){ alert('๋ก๊ทธ์ธ์ด ํ์ํฉ๋๋ค.'); window.location.replace('https://www.naver.com'); // ์์ ์๋ฌ ์น ํ์ด์ง } }) }else if(elem.matches('[data-name="bookmark"]')){ // ๋ถ๋งํฌ ํด๋ฆญ ์ ์คํ // console.log("๋ถ๋งํฌ!"); let pk=elem.getAttribute('name'); // pk๊ฐ์ ๋ฐ์์จ๋ค $.ajax({ Method:'POST', /* ์๋ฌ๋ ๊ฒฝ์ฐ GET์ผ๋ก ๋ณ๊ฒฝํ๊ธฐ */ url: 'data/bookmark.json', data: {pk}, dataType: 'json', success: function(response){ let bookmarkCount=document.querySelector('#bookmark-count-37'); bookmarkCount.innerHTML = '๋ถ๋งํฌ' + response.bookmark_count +'๊ฐ'; }, error:function(request, status, error){ alert('๋ก๊ทธ์ธ์ด ํ์ํฉ๋๋ค.'); window.location.replace('https://www.naver.com'); // ์์ ์๋ฌ ์น ํ์ด์ง } }) }else if(elem.matches('[data-name="comment"]')){ let content = document.querySelector('#add-comment-post37 > input[type=text]').value; console.log(content); if(content.length >140){ alert('๋๊ธ์ ์ต๋ 140์ ์ ๋ ฅ ๊ฐ๋ฅํฉ๋๋ค. ํ์ฌ ๊ธ์์ : ' + content.length); return; } $.ajax({ Method:'POST', url:'./comment.html', // ./๋ ํ์ฌ ํด๋๋ฅผ ๋ปํจ data: { 'pk': 37, 'content': content }, dataType:'html', success: function(data){ document.querySelector('#comment-list-ajax-post37').insertAdjacentHTML('afterbegin',data); }, error:function(request,status,error){ alert('๋ฌธ์ ๊ฐ ๋ฐ์ํ์ต๋๋ค.'); } }) document.querySelector('#add-comment-post37>input[type=text]').value=''; }else if(elem.matches('[data-name="comment_delete"]')){ $.ajax({ Method:'POST', /* ์๋ฌ๋ ๊ฒฝ์ฐ GET์ผ๋ก ๋ณ๊ฒฝํ๊ธฐ */ url:'data/delete.json', data: { 'pk': 37, /* 'pk':pk */ }, dataType:'json', success: function(response){ if(response.status){ let comt = document.querySelector('.comment-detail'); comt.remove(); } }, error:function(request, status ,error){ alert('๋ฌธ์ ๊ฐ ๋ฐ์ํ์ต๋๋ค..'); window.location.replace('https://www.naver.com'); // ์์ ์๋ฌ ์น ํ์ด์ง } }) }else if(elem.matches('[data-name="follow"]')){ $.ajax({ Method:'POST', url:'data/follow.json', data: { 'pk': 37, }, dataType:'json', success: function(response){ if(response.status){ document.querySelector('input.follow').value="ํ๋ก์"; }else{ document.querySelector('input.follow').value="ํ๋ก์ "; } }, error: function(request, status, error){ alert('๋ฌธ์ ๊ฐ ๋ฐ์ํ์ต๋๋ค..'); window.location.replace('https://www.naver.com'); // ์์ ์๋ฌ ์น ํ์ด์ง } }) }else if(elem.matches('[data-name="share"]')){ console.log("๊ณต์ !"); }if(elem.matches('[data-name="more"]')){ console.log("๋๋ณด๊ธฐ!"); } elem.classList.toggle('on'); // on ํด๋์ค ์ฃผ๊ธฐ } function resizeFunc(){ // console.log('resize!!'); if(pageYOffset >= 10){ let calcWidth = (window.innerWidth *0.5) +167; // ์น ํ์ด์ง ๊ธฐ๋ฐ์ผ๋ก ์์น ์ฌ์กฐ์ // console.log(window.innerWidth); sidebox.style.left = calcWidth +'px'; } if(matchMedia('screen and (max-width : 800px)').matches){ // ์ฌ๋ฌ๊ฐ์ ์ปจํ ์ธ ๋ฐ์ค๊ฐ ์์ผ๋ฏ๋ก ๋ฐฐ์ด ํ์ฉ for(let i=0; i<variableWidth.length; i++){ variableWidth[i].style.width = window.innerWidth -20 +'px'; } }else{ for(let i=0; i<variableWidth.length; i++){ if(window.innerWidth >600) // ๋ํดํธ ๊ฐ์ด 614 ์ด๋ฏ๋ก 614 ์ด์ ์ปค์ง์ง ์๊ฒ ํ๊ธฐ ์ํจ variableWidth[i].removeAttribute('style'); } } } function scrollFunc(){ let scrollHeight = pageYOffset+window.innerHeight; let documentHeight = document.body.scrollHeight; // console.log(pageYOffset) console.log('scrollHeight : '+scrollHeight) console.log('documentHeight : '+documentHeight) // console.log(pageYOffset); if(pageYOffset >= 10){ // ๋๋๊ทธํ ๊ฒฝ์ฐ header.classList.add('on'); if(sidebox){ sidebox.classList.add('on'); }resizeFunc(); }else{ header.classList.remove('on'); if(sidebox){ sidebox.classList.remove('on'); sidebox.removeAttribute('style'); } } if(scrollHeight >= documentHeight){ let page = document.querySelector('#page').value; document.querySelector('#page').value= parseInt(page) + 1; callMorePostAjax(page); if(page > 5){ return; } } } function callMorePostAjax(page){ if(page > 5){ return; } $.ajax({ Method:'POST', url:'./post.html', data:{ 'page':page, }, dataType:'html', success: addMorePostAjax, error: function(request, status, error){ alert('๋ฌธ์ ๊ฐ ๋ฐ์ํ์ต๋๋ค.'); window.location.replace('https://www.naver.com'); } }) } function addMorePostAjax(data){ deligation.insertAdjacentHTML('beforeEnd',data); } setTimeout(function (){ scrollTo(0,0); },100); // ์๋ก๊ณ ์นจํ๋ฉด ํ๋ฉด์ด ์ ค ์๋ก ๊ฐ๋๋ก ํ๋ค if(deligation){ deligation.addEventListener('click',deligationFunc); } window.addEventListener( 'resize', resizeFunc); window.addEventListener('scroll', scrollFunc); // ์คํฌ๋กค ์ด๋ฒคํธ ๋ฐ์ ์ scrollFunc ์คํ
ย