개인정보보호방침 사이트 제작시 footer 에 이용약관 , 개인정보취급방침 등에 대해 링크를 걸어야 할때가 있다.이때 개인정보취급방침이 눈에 띄도록 볼드를 주던가 색상을 다르게 해야한다.이것이 인터넷진흥원의 권장사항이다.눈에 띄도록 하지 않으면 벌금이라는 말도 있는데... 퍼블리싱/TIP 2016. 5. 18. 10:24
radio, checkbox - 체크했을때 동작. 12345678910111213$('input.painok').click(function(){ var chk = $(this).is(":checked"); if(chk){ $('li.paintext').removeClass("disnone"); }})$('input.painno').click(function(){ var chk = $(this).is(":checked"); if(chk){ $('li.paintext').addClass("disnone") }}) Colored by Color Scriptercs 퍼블리싱/CSS 2016. 5. 4. 14:09
모바일전용사이트 분기시키기 1234567 var userAgent = navigator.userAgent.toLowerCase(); var mobile = (/iphone|ipad|ipod|android/i.test(userAgent)); if (mobile) { window.location.href = "/mobile/index.html"; } Colored by Color Scriptercs분기시키자.반응형이 아니라 웹과 모바일을 따로 분리해서 제작해야할때.모바일로 접근하면 모바일페이지로 분기. 퍼블리싱/TIP 2016. 4. 21. 16:57
모바일웹에서의 FOOTER 모바일웹에서 footer 태그에 위치한 숫자들을 전화번호로 인식하여 자동으로 a태그가 감싸진다. 그 결과 원하던 폰트색이 아닌 a태그로 감싸져있을 때의 폰트색으로 변경되어 나오게 되는데 footer에 태그를 추가해서 원하는 폰트색으로 변갱해주자.12footer address a:link{color:#838383;}footer address a:visited{color:#838383;}cs이렇게 추가해주면 원래 폰트색으로 나오게 된다. 퍼블리싱/TIP 2016. 4. 6. 15:32
0부터 목표치 까지 수치 카운트하는 애니메이션 12345678910111213141516171819if(isScrolledIntoView(main05)){ $('#section05 .article h2').css({"animation-play-state":"running"}) if (!main05Status) { $('span.count').each(function(index) { var eachnum = $(this).text() $(this).prop('Counter',0); $(this).animate({ Counter: eachnum }, { interation: 1, duration: 3000, step: function(now) { $(this).text(parseInt(now)); } }); }); main05Status = true; .. 퍼블리싱/TIP 2016. 4. 5. 14:14
테이블 중간에 행추가 123456789function appendRow() { var inn = i+1; var tr = "" + "답글" + "관리자" + "Re : 산전마사지도 부분이 있나요??" + "2016-04-04" $(".adminInquiry table tr:eq(" + inn + ")").after(tr); }Colored by Color Scriptercs기준이 되는 중간행의 인덱스값이 필요함.after() 함수 이용하면 됌. 퍼블리싱 2016. 4. 4. 17:06
스크롤 이벤트 123456789101112$(window).scroll(function(){ if (finishScroll > $(window).scrollTop()) { console.log("올림"); } if (finishScroll 퍼블리싱/TIP 2016. 3. 30. 18:08
CSS - 박스섀도우 안에 넣는법 1box-shadow: inset 2px 2px 5px rgba(154, 147, 140, 0.5), 1px 1px 5px rgba(255, 255, 255, 1);cs박스 섀도우 안에 넣는법 퍼블리싱/CSS 2016. 3. 29. 17:34