본문 바로가기

반응형

Story

반응형 및 여러 디바이스 미리보기 반응형 및 여러 디바이스 미리보기 https://www.browserstack.com/responsive 더보기
detect-mobile-devices 모바일 체크 // Include and instantiate the class.require_once 'Mobile_Detect.php';$detect = new Mobile_Detect;   // Any mobile device (phones or tablets).if ( $detect->isMobile() ) {  }   // Any tablet device.if( $detect->isTablet() ){   }   // Exclude tablets.if( $detect->isMobile() && !$detect->isTablet() ){   }   // Check for a specific platform with the help of the magic methods:if( $detect->isiOS() ){ .. 더보기
detect-mobile-devices 모바일 체크 /** * jQuery.browser.mobile (http://detectmobilebrowser.com/) * * jQuery.browser.mobile will be true if the browser is a mobile device * **/ (function(a){(jQuery.browser=jQuery.browser||{}).mobile=/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phon.. 더보기
Disable or enable an input field with jQuery Disable or enable an input field with jQuery For jQuery 1.6 or above there is prop() function and lower jQuery versions have attr() function which can be used to disable or enable an input field. Further more DOM object’s disabled property also works with any version of jQuery to disable or enable an input field. Single Input If you are dealing with just an element then relying on the actual DOM.. 더보기
카카오스토리 공유하기 카카오스토리 공유하기가 웹에서 지원이 된다. 기존에는 카카오링크가 앱에서 지원이 되었는대 웹에서는 없었다. 이번에 카카오스토리 공유하기가 지원되면서 각종 웹페이지에 사용될거 같다. 사용방법은 https://developers.kakao.com/docs/social-plugins/story-share 에 자세히 나와있고 다음과 같다. 1. 아래의 코드를 페이지에 삽입하세요. 태그 바로 뒤에 추가하는 것을 권장합니다. 2. 스토리 공유 버튼을 표시할 위치에 다음 코드를 삽입하세요. 또 다른 방법으로 이 두가지 예를 조합해서 사용할수도있다. 또한 공유창에 스크랩되는 내용은 OG 프로토콜에 따라 정해진다. 더보기
OG 프로토콜 - The Open Graph protocol - facebook , KakaoStory og 프로토콜이라고 들어 보셨는지.. facebook share 버튼이나 like 버튼등 소셜 버튼을 사용할때 공유되는 글에 나타나는 글씨나 이미지 url 등을 지정해주는 방법이 존재하는대 이 규칙을 og 프로토콜로 정의된다. facebook 에서만 적용되는줄 알고있었는대 이번에 카카오스토리 웹 공유버튼이 지원되면서 카카오스토리에도 이 방법이 적용되어있는걸 확인했다. 요즘 각종 소셜사이트들이 있는대 각종 기능을 제공하는 버튼이 존재한다. 하나의 공통된 규칙으로 내용을 채우고 사용할수있으면 했는대 좋은 선택인거 같다. 다음은 open graph protocol 에 대한 내용이다.. The Open Graph protocol Introduction The Open Graph protocol enables a.. 더보기
YouTube 내장 플레이어 및 플레이어 매개변수 YouTube 내장 플레이어 및 플레이어 매개변수 개요 이 문서에서는 애플리케이션에 YouTube 플레이어를 삽입하는 방법을 설명하고 YouTube 내장 플레이어에서 사용할 수 있는 매개변수를 정의합니다. YouTube 플레이어는 태그 또는 재생할 콘텐츠 선택 내장 플레이어를 구성하여 동영상, 재생목록, 사용자가 업로드한 동영상 또는 특정 검색어의 검색결과를 로드할 수 있습니다. 그러나 단일 동영상을 로드하는 것 이외의 옵션은 AS3 개체 삽입 및 AS3 플레이어를 로드하는 IFrame 삽입에서만 지원됩니다. IFrame 삽입에서 HTML5 플레이어를 로드할 수도 있습니다. 다음 목록은 이러한 옵션을 설명합니다. 동영상 로드 IFrame 삽입의 경우 로드할 동영상의 YouTube 동영상 ID는 IFram.. 더보기
F12 개발자 도구의 콘솔 오류 메시지 F12 개발자 도구의 콘솔 오류 메시지 이 참조를 사용하여 Internet Explorer 11의 콘솔 및 디버거에 표시된 오류 메시지를 해석합니다. 소개 F12 개발자 도구를 사용하여 디버그하는 경우 SEC7111 또는 HTML1114 같은 오류 코드가 콘솔 및 디버거 도구에 표시됩니다. 여기서는 일반적인 콘솔 오류 코드 및 관련 메시지 목록을 제공합니다. 또한 자세한 설명 및/또는 해당하는 경우 문제를 해결하기 위한 제안 사항을 제공합니다. 표에 있는 설명은 문제 디버그를 위한 시작점을 제공할 뿐이며, 추가 정보를 얻는 가장 좋은 방법은 온라인 개발자 포럼이나 Internet Explorer 개발자 센터를 검색하는 것입니다. 보안 오류 보안 오류 코드는 SEC7xxx 형식입니다(예: SEC7113)... 더보기
Dumping MySQL Stored Procedures, Functions and Triggers Dumping MySQL Stored Procedures, Functions and Triggers MySQL 5 has introduced some new interesting features, like stored procedures and triggers. I will show in this small post how we can backup and restore these components using mysqldump. mysqldump will backup by default all the triggers but NOT the stored procedures/functions. There are 2 mysqldump parameters that control this behavior: —rou.. 더보기
[펌글]mod_jk를 이용한 Apache2 + Tomcat6.0.18 연동 및 가상호스트 * 개요 이 문서는 80포트만이 열린 네트워크 환경에서 아파치(80포트)와 톰캣(8080포트)을 동시에 서비스 하기 위한 방법을 설명하고 있습니다. * 시스템사항 Operating System: Centos5 Webserver: Apache 2.2.2 JDK: JDK 6.0 Servlet Container: Tomcat 6.0.18 Tomcat Connector: Jakarta Tomcat Connector mod_jk (not mod_jk2) * 기본폴더 apache2 : /usr/local/apache tomcat_home : /usr/local/tomcat java_home : /usr/local/java mod_jk : /usr/lib/apache/modules/mod_jk.so * 설정 순서 1.. 더보기

반응형