일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
31 |
- 파주
- 리브레캐드
- 설치
- 잡토이 메이킹 코딩 학원
- Unity
- mysql
- librecad
- MSSQL
- jsp
- 코딩
- 강좌
- 안드로이드
- 아두이노
- 톰캣
- jobtoy
- s4a
- Spring Security
- 예제
- 유니티
- 오라클
- 운정
- 잡토이
- tomcat
- Android
- html5
- 시작하기
- 라즈베리파이
- 설정
- 스크래치
- oracle
- Today
- Total
목록programming/mobile web (18)
랩제이
[mobile web] jquery mobile configurable option 설정하기 1. 방법 1 2. 방법 2$(document).bind("mobileinit",function(){$.extend($.mobile,{defaultTransition:'slide',loadingMessage:'Now Loding..',ajaxEnabled:false,hashListeningEnabled: false//history && hashes,linkBindingEnabled : false,autoInitialize:false,metaViewportContent: 'width=device-width,minimum-scale=0.5,maximum-scale=0.5'});}); [mobile web] jquer..
[mobile web] 로직 검토 신한카드 모바일웹 분석하기 PC에서 접근했을 때와 모바일에서 접근했을 때를 구분합니다.아이폰을 따로 구분합니다. 1. 접근 단말기에 따른 페이지 이동하기 var ua = navigator.userAgent;var checker = { iphone: ua.match(/(iPhone|iPod)/), ipad: ua.match(/iPad/), blackberry: ua.match(/BlackBerry/), android: ua.match(/Android/), galaxyS: ua.match(/SHW-M110S/), galaxyNote: ua.match(/SHV-E160S/), galaxyNexus: ua.match(/SHW-M420S/), galaxyTab89: ua.matc..