[HTML] Form inside a table
·
개발일지/2015
[출처] http://stackoverflow.com/questions/5967564/form-inside-a-table A form is not allowed to be a child element of a table, tbody or tr. You can have an entire table inside a form. You can have a form inside a table cell. You cannot have part of a table inside a form. Use one form around the entire table. Then either use the clicked submit button to determine which row to process (to be quick) o..
[jQuery] Hide pager if bxslider has only 1 slide
·
개발일지/2015
[출처] http://stackoverflow.com/questions/16905129/hide-pager-if-bxslider-has-only-1-slide I faced the same trouble and here is my solution: we should count how many child elements we have under .bxslider2 block $("#ticket-list li").length and if there is only one, then set option to 'false', otherwise to 'true'. $('.bxslider2').bxSlider({ mode: 'horizontal', speed: '180', pagerType:'full', pager:..
[Dev] mmt-donut-chart.js 개발일지
·
개발일지/2015
MMT-DONUT-CHART.JS 12/02 수- default chart option 추가 시 생긴 버그 수정if(parameters.defaultChart==null && percent==0){percent = 0.001;} 12/01 화- default chart option 추가- 0% 버그 수정 11/27 금- 버그 수정 ( '' → {} ) if(parameters==undefined){ parameters = {}; } 11/20 금 - 0% 에서 백그라운드 차트 안그려지는 현상 수정 - synchronize between 'drawing chart' and 'counting number' 11/16 월 - fill with gradient - 참고 http://stackoverflow.co..
[CSS] ripple click effect
·
개발일지/2015
http://thecodeplayer.com/walkthrough/ripple-click-effect-google-material-design
[오픈소스] Apache, GNU, MIT 라이선스
·
개발일지/2015
아파치 라이선스 아파치 라이선스(Apache License) 아파치 소프트웨어 재단에서 자체적으로 만든 소프트웨어에 대한 라이선스 규정이다. 아파치 2.0 라이선스는 누구나 해당 소프트웨어에서 파생된 프로그램을 제작할 수 있으며 저작권을 양도, 전송할 수 있는 라이선스 규정을 의미한다. 아파치 라이선스에 따르면 누구든 자유롭게 아파치 소프트웨어를 다운 받아 부분 혹은 전체를 개인적 혹은 상업적 목적으로 이용할 수 있으며 재배포시에는 원본 소스 코드 또는 수정한 소스 코드를 반드시 포함시켜야 하는 것은 아니고[1] [2] 아파치 라이선스, 버전 2.0을 포함시켜야 하며 아파치 소프트웨어 재단에 개발된 소프트웨어라는 것을 명확하게 밝혀야 한다. https://ko.wikipedia.org/wiki/%EC%9..
[jQuery] Count-up Advanced Code
·
개발일지/2015
[jQuery] Magnific popup conflict with "jquery.nicescroll"
·
개발일지/2015
[출처] https://github.com/dimsemenov/Magnific-Popup/issues/183 html에 nicescroll을 적용시킨 상태에서 magnific popup을 켰다가 끄면 아래와 같이 스크롤이 중첩된다.nicescroll은 선택된 대상을 overflow: hidden이 되도록 자동으로 변경되는데, magnific popup이 close될때 이 속성을 해제해버려서원래 윈도우 스크롤이 다시 뜨게 된다. 해결 방법은 아래와 같다. $('yourElement').magnificPopup({ ...your Popup configuration... });//Add the following to your configuration:callbacks: { afterClose: function..
[jQuery] Count-Up Animation 성능 비교
·
개발일지/2015
[테스트 환경] Chrome v.45.0.2454.101[테스트 결과] v.1 과 v.2 는 1ms, v.3 은 2.1 ms 였다. Profiles 와 Network 로 테스트
[JS] JavaScript Profiling With The Chrome Developer Tools
·
개발일지/2015
[출처] http://www.smashingmagazine.com/2012/06/javascript-profiling-chrome-developer-tools/[번역] Your website works. Now let’s make it work faster. Website performance is about two things: how fast the page loads, and how fast the code on it runs. Plenty of services make your website load faster, from minimizers to CDNs, but making it run faster is up to you. Little changes in your code can have gi..
[CSS] 책 표지 입체적으로 보이게 하기 (from.리디북스)
·
개발일지/2015
리디북스에 들어갔다가 신기한 걸 봤다. 2D 이미지를 가지고 약간의 입체효과를 CSS로 구현한 것이다. [출처] http://ridibooks.com/v2/Detail?id=754015309 Before After