9월, 2018의 게시물 표시

[추석 차례] 제사상 음식 정리

이미지
추석 제사상 음식 - 동그랑땡 https://yeojinkim.blog.me/221359813736 - 동태전 https://amyzzung.tistory.com/1053 - 산적꼬치 http://bronnley79.tistory.com/entry/%EC%82%B0%EC%A0%81%EA%BC%AC%EC%B9%98-%EB%A7%8C%EB%93%A4%EA%B8%B0-%EB%8F%BC%EC%A7%80%EA%B3%A0%EA%B8%B0-%EC%82%B0%EC%A0%81-%EB%A7%8C%EB%93%A4%EA%B8%B0 - 두부전 https://m.blog.naver.com/PostView.nhn?blogId=jangmars&logNo=220269629747&proxyReferer=https%3A%2F%2Fwww.google.com%2F - 애호박전 https://blog.naver.com/jangmars/220269302791 - 소고기 무우 탕국 http://www.menupan.com/cook/cookqna/cookqna_view.asp?id=87619 - 한꺼번에 끓이기 https://m.blog.naver.com/PostView.nhn?blogId=lh334&logNo=10102411210&proxyReferer=https%3A%2F%2Fwww.google.com%2F https://m.blog.naver.com/PostView.nhn?blogId=pikrl&logNo=220777129057&proxyReferer=https%3A%2F%2Fwww.google.com%2F - 바지락탕 http://www.10000recipe.com/recipe/6872296 - 홍합탕 http://blog.daum.net/_blog/BlogTypeView.do?blogid=0Sr59&articleno=57&categoryId=7&regdt=20110124173912 - 시금치,

[iOS] body 스크롤 막기

.scrollOff{position:fixed;overflow:hidden;height:100%;} // body 스크롤 막음 function scrollOff(){    $('body').addClass('scrollOff').on('scroll touchmove mousewheel', function(e){       e.preventDefault();    }); } // body 스크롤 풀기 function scrollOn(){    $('body').removeClass('scrollOff').off('scroll touchmove mousewheel'); } 지인에게 받은 팁...iOS때문에 여러사람들 고생하네...

[JS] History API : 스크롤 복원

if ( 'scrollRestoration' in history ) {   // Back off, browser, I got this...   history . scrollRestoration = 'manual' ; } https://developers.google.com/web/updates/2015/09/history-api-scroll-restoration

[CSS] CSS 단위별로 수치 확인

https://codepen.io/netsi1964/full/NyzmeQ

[iOS] iOS png, z-index, opacity, translate 버그

1. 버그 발생 현상 표시된 이미지 부분 CSS가 동작하지 않는 현상 검색해보면 해당 속성들이 존재할때 브라우저들이 인식을 못하는 버그가 존재한다는 글들이 나오며 iOS를 제외한 브라우저들은 해당 현상을 고친것으로 나옴. iOS는 z-index 말고  transform :  translate3d ( 0 , 0 , 1px ); 을 사용해서 처리하는 쪽으로 해결책들이 검색됨. 하지만 해결이 안됬음...ㅠㅠ html <div class="img_wrap" style="position:relative;z-index:1;opacity:0;transform: translate(0, 0);"> <img src="/common/img/vin/main/banner02_obj1_180831.png" alt="" style="position:relative;z-index:3;"> <img src="/common/img/vin/main/banner02_obj2_180831.png" alt="" style="position:absolute;top:8%;left:0;z-index:1"> <img src="/common/img/vin/main/banner02_obj3_180831.png" alt="" style="position:absolute;top:8%;left:0;z-index:2"> <img src="/common/img/vin/main/banner02_obj4_180831.png" alt="" style="position:absolute;top:7.1667%;left:9.4667%;width:19.4667%;z-index:1;">

[iOS] iOS overflow-x scroll 버그

overflow-x : scroll 사용시에 overflow 영역에서 터치로 화면 스크롤이 되지 않는 버그 https://stackoverflow.com/questions/41681251/overflow-x-scroll-inside-a-fixed-div-prevents-vertical-scrolling-on-ios