lab.naminsik
  • Javascript, jQuery
  • Reactjs
  • React Native
  • iOS
  • Android
  • AWS
  • Server
  • Html, CSS
  • Php
  • asp .net
  • SQL
  • Word Press
search
keywords
  • Android 2017‧11‧07

    가로 모드(또는 세로 모드)로 가는 회전 막기

    mainfests 폴더 안에 AndroidMainfest.xml이 있을 것임. 그 안에 <activity android:name = ".~~~"></activity> 노드가 있는데 세로 모드만 할 경우 android:screenOrientation="portrait" 속성을 추가해주면 된다. <activity android:name=".MainActivity" android:label="@string/app_name" android:screenOrientation="portrait"> </activity> 가로 모드만 할 경우 android:screenOrientation="landscape" 라고 넣어주면 된다.

  • Javascript, jQuery 2015‧01‧13

    jQuery - 스마트폰 스크린 회전 감지 스크립트

    스마트폰의 스크린이 가로모드와 세로모드를 감지하여 필요에 따라 스타일시트나 스크립트를 다르게 사용하는 경우가 있다. 일단 css의 미디어쿼리로 처리하는 방법을 보면 아래와 같다. #cover{ display:none; } @media only screen and (device-width: 768px) and (orientation: landscape) { #cover{ display: block; } } @media only screen and (min-device-width: 320px) and (orientation: landscape) { #cover{ display: block; } }  위 […]

popular

  • 관리자 페이지 중 위젯에서 드래그 & 드롭이 안되는 현상
  • JS - youtube 재생 완료 이벤트 받기
  • 모바일웹에서 기상청 날씨(실황) api 가져와서 파싱해서 노출까지 자바스크립트로 만들기
  • 구글 맵 - 일정 범위 다중 마커 합산한 Cluster(클러스터) 기능
  • wp-json 으로 json 호출시 썸네일과 커스텀 필드 받기
  • ACF 플러그인 - 싱글 값, 멀티 값 불러오기
  • github로 무료 웹호스팅, 미디어 호스팅 이용하기(for 디자이너)
  • git - 깃 버전 차이로 인해 다른 브랜치 것으로 덮어씌우기
  • CodeDeploy agent was not able to receive the lifecycle event. Check the CodeDeploy agent logs on your host and make sure the agent is running and can connect to the CodeDeploy server.
  • JS - 현재 날짜 가져오기

comment

  • 감사합니다!
  • 감사합니다~
  • 잘 해결 되셨다니 다행입니다!...
  • 정말 감사합니다. 덕분에 해결했습니다!...
  • 유용한정보 대단히 감사합니다....