Story 썸네일형 리스트형 유튜브(youtube) 동영상 레이어 겹칠때 뚤리는 현상 해결방법 or z-index 문제 유튜브 동영상을 화면에 넣을때 레이어가 그 위로 올라가는경우 아래 화면 처럼 보여야 하는대 이렇게 레이어가 뚫려서 보이는경우가 있습니다. 동영상을 넣을때 iframe 형식으로 넣는대 이렇게 넣는 부분에서 &wmode=opaque 를 추가해주면 이런 현상을 막을수 있습니다. 또는 ie11 에서는 이 방법으로 해결되었다. 더보기 KCP 모바일 결제모듈 스마트결제 [ 거래인증을 위한 APM 환경설정 ] ※ APM 버전은 5.0 이상으로 연동 (PHP 5.0 이하는 soap 지원 하지 않음) 5.0 이하 버전으로 연동시 approval_key.js JavaScript 오류가 발생합니다.(스마트폰 연동시) [ 거래인증 통신을 하기 위한 서버 설정 ] ※ Windows_php 의 경우 php_openssl.dll 과 php_soap.dll 설정 Linux_php 의 경우 서버에 configure openssl 과 --enable-soap 설정 ※ 거래인증등록 통신 방법은 SOAP 통신 기술을 기반으로 제공합니다. 모듈 : 메뉴얼 : . . . . . - 계좌이체의 경우 pay_method 값이 메뉴얼이랑 sample 페이지 가 서로 다릅니다. 테스트해본결과 sample.. 더보기 php date_format smarty smarty_modifier_date_format is_numeric 64bit 날짜 문제 php smarty 를 32비트 운영체계에서 사용하다가 64비트로 os를 업그래이드 한후 "20130812174109" 값을 {#$BoardConts.reg_dm|date_format:"%Y.%m.%d"#} 이런식으로 출력했을때 3000년이 넘게 나오는등 이상이 생겼다. 구글링을 통해서 찾아보니 http://www.smarty.net/forums/viewtopic.php?p=8837 에서 By debugging smarty_make_timestamp() function, it turns out that strtotime() of this value is returning something that is_numeric() so it is returned. That means the special mysql.. 더보기 font size px em % 웹에서만 사용하다 모바일을 고려하다 보니 font-size가 문제가 됩니다. 각종 기기마다 해상도가 다르다 보니 컨텐츠의 text 내용이 작아보이거나 너무 크게 보이는등의 문제가 발행합니다. font-size 의 단위를 설정하는 방법은 크게 고정단위(px)와 유동단위(%,em)이 있는대 모바일에서 확대 또는 축소되어 보이려면 유동단위를 사용해 주면 됩니다. 1em = 16px em 계산법은 12(사용하고싶은px) / 16(기준크기px) = 0.75 ex ) body { font-family:'맑은 고딕', malgun gothic, '돋움',dotum, AppleGothic,sans-serif;font-size:1em; } p { font-size:0.875em; } // 14/16 = 0.875 더보기 jQuery Marquee 출처 http://www.jqueryscript.net/demo/Text-Scrolling-Plugin-for-jQuery-Marquee/ jQuery Marquee download Events beforeStarting: Event will be fired on the element before animation starts. finished: Event will be fired on the element after the animation finishes. pause: Fire/trigger this event on the element when you want to pause the animation, for example when you click/hover a link. paused: Event.. 더보기 이미지맵 image map 확인 이미지맵이 걸려있는 경우 영역을 확인하기 힘들때가 있다. 또는 해당 영역을 스타일을 주고 싶을때도 있다. 이런 경우 확인 하는 방법이 있다. 출처 : http://davidlynch.org/projects/maphilight/docs/demo_simple.html 방법 이렇게 하면 mouse over 시 maphilight 에 있는 스타일이 영역에 적용되어 보인다. 더보기 Multi-line Text Overflow Ellipsis 출처 : http://dotdotdot.frebsite.nl/ 글이 길어지면 ... 으로 줄이는대 한 줄 일때는 overflow: hidden; white-space: nowrap; text-overflow: ellipsis; 등을 사용하여 표현이 가능한대 여러 줄 일경우에는 표현이 힘들어 진다. 구굴링으로 찾아보았는대 css 로 처리하는것도 있고 jquery 로 처리하는것도 있는대 jquery 로 처리하는게 가장 간단해 보였다. 사용방법은 jQuery.dotdotdot Advanced cross-browser ellipsis for multiple line content. Demo's and documentation: dotdotdot.frebsite.nl Text only: before: Lorem .. 더보기 모바일에서 fixed style 지원여부 position Selector iOS Android Opera BlackBerry Nokia UC NetFront Dolphin One Tizen IE Firefox 5 6 2 3 4 Chr Mini Mob 12 Mob 14 6 7 PB 10 Xpress MeeGo Anna Belle 9 10 position: other valuesstatic, relative, and absolute Yes Yes Yes Yes Yes Yes Yes WebKit browsers have a minor bug; see page. position: fixed basic supportDoes the browser try to create a fixed layer at all, or is it just an absolute.. 더보기 Opera Mobile Emulator http://www.opera.com/ko/developer/mobile-emulator Opera Mobile Emulator Do your mobile development straight from your desktop, and pair it with Opera Dragonfly for advanced debugging. Opera Mobile Emulator 12.1 for Windows Opera Mobile Emulator 12.1 for Mac Opera Mobile Emulator 12.1 for Linux Mobile debugging on your desktop 더보기 PHP 5.3 이상에서 Deprecated 에러 발생시 처리 PHP Deprecated: Function [함수명] is deprecated 해당 에러 문구는 PHP 6.0부터는 해당 함수들이 제거될 예정이니 개발시 더 이상 사용하지 말 것을 권고하는 메시지입니다. 경고 메시지이므로 사용상에 문제는 없으며, php.ini 파일을 수정하여 해당 문구가 발생하지 않도록 설정할 수 있습니다. # vi php.ini 519 ; Production Value: E_ALL & ~E_DEPRECATED 520 ; http://php.net/error-reporting 521 error_reporting = E_ALL & ~E_NOTICE 521번째 줄의 error_reporting = E_ALL & ~E_NOTICE 항목을 error_reporting = "E_ALL & ~E.. 더보기 이전 1 ··· 9 10 11 12 13 14 15 ··· 33 다음