분류전체보기 234

css chrome from blurring small images

mobile chrome 에서썸네일 넓이가 110px 미만이면흐릿하게 blur 처리가 되는데또렷하게 보이도록 해당 기능 막는법?12345678img { image-rendering: optimizeSpeed; /* */ image-rendering: -moz-crisp-edges; /* Firefox */ image-rendering: -o-crisp-edges; /* Opera */ image-rendering: -webkit-optimize-contrast; /* Chrome (and Safari) */ image-rendering: optimize-contrast; /* CSS3 Proposed */ -ms-interpolation-mode: nearest-neighbor; /* IE8+ */}

jquery input 한글/영문/특수문자 입력제한

javascript 정규식 사용모바일 안드로이드 천지인 키보드 예외추가 $("input:not([type='file']), textarea").bind("change keyup input",function() { var el = this; var ls_str = el.value; var deny_pattern =/^[\-\:\ㄱ-ㅣ가-힣a-zA-Z0-9_\\s\\/\\.\\ \\*\\#\\\=\\_\\~\\?\\!\\,|\u318D\u119E\u11A2\u2022\u2025a\u00B7\uFE55]*$/; numPattern = ls_str.match(deny_pattern); if (numPattern == null) { alert("영문자와 한글,숫자만을 입력하세요"); this.value = "";..

asp xml 페이지 생성

===================================================================================== '-->자신의 페이지 설정에 맞게 주저리주저리 nFst.text = "주저리주저리" '노드를 안에 삽입. nRoot.AppendChild(nFst) '본격적으로 위에 정의한 내용을 xml페이지로 작성 response.contentType = "text/xml"response.write "" response.write XMLObj.xml %> =============================================================================..

프로그래밍/ASP 2017.03.27

javascript iOS 10 모바일웹 pinch-to-zoom issue (user-scalable)

http://hellomrma.com/wp/ios-10-%EB%AA%A8%EB%B0%94%EC%9D%BC%EC%9B%B9-pinch-to-zoom-%EA%B8%B0%EB%8A%A5/ 애플이 최근 iOS 10 업데이트를 제공했다.일반적으로 pinch-to-zoom 기능을 이용하면 이미지나 웹사이트를 확대/축소 할 수 있다. 대부분의 모바일웹에서는 viewport 옵션에서 scale 을 고정 시킨다.1근데 이게 iOS 10 에서 기능이 먹히지 않는다. 구글링 해 보니,iOS 10 beta release note. To improve accessibility on websites in Safari, users can now pinch-to-zoom even when a website sets user-scal..

asp 커리어넷 오픈api 학교주소검색 xml가져오기

'api key strKey = "your api key" sGetGubun = Request("gubun") '초중고구분 sGetkeyword = Request("keyword") '검색어 rows = 0 If sGetGubun = "1" Then sGetGubun = "midd_list" '중학교 Else sGetGubun = "high_list" '고등학교 End If if not IsNULL(sGetGubun) and len(sGetGubun) Then cngSearch = server.URLEncode(sGetkeyword) '주소 정보 가져오기 sPath = "http://www.career.go.kr/cnet/openapi/getOpenApi?apiKey="& strKey &""_ & "&s..

프로그래밍/ASP 2017.03.20