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

    JS - 브라우저 체크(ie 11 포함)

    windows 10에 있는 ie 11은 navigator.userAgent 로 체크할 경우 msie로 더이상 체크할 수 없게 되었다. 자세한 이유는 'User Agent 파헤치기 (navigator.userAgent)' 여기에 자세한 설명이 있다. 어찌되었던 아래는 모든 ie일 경우 체크하게 하는 조건문이다. var agent = navigator.userAgent.toLowerCase(); if ( (navigator.appName == 'Netscape' && agent.indexOf('trident') != -1) || (agent.indexOf("msie") != -1)) { // ie일 경우 }else{ // […]

  • Html, CSS 2014‧02‧10

    반응형웹에서 이미지 높이 auto 값이 ie 8 이하에서 오류 대처

    img { width: inherit; /* Make images fill their parent's space. Solves IE8. */ max-width: 100%; /* Add !important if needed. */ height: auto; /* Add !important if needed. */ }  또는 img { max-width:100%; height: auto; } /* Enough everywhere except IE8. */ @media \0screen {img { width: auto }} /* Prevent height distortion […]

popular

  • 메인 화면에 이미지가 슬라이드 되는 프로모션 만들기
  • [25년12월 5일 ] react next.js 취약점 발견, 해킹 공격 피해 사례, 코인 채굴 악성 코드
  • 포토샵 CS3가 실행중이면 ESC 키가 작동하지 않는 버그 고치기
  • 창 사이즈 읽어오기 scrollHeight / clientHeight / scrollTop (브라우즈별 차이점)
  • JSX - 엘리먼트를 단순 조건에 따른 렌더
  • 안드로이드 스튜디오에 모듈,라이브러리 추가하기
  • 게시판 플러그인 KBoard 설치법 및 사용법
  • 아이콘 디자인 inspiration 사이트
  • 안드로이드 스튜디오로 만들 때 타이틀바 없애기
  • 자바스크립트 새창 뛰우기 옵션과 방법

comment

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