FrontEnd(56)
-
[Scroll Magic] IE pin scrolling issues
https://github.com/janpaepke/ScrollMagic/issues/267 https://github.com/janpaepke/ScrollMagic/issues/255 https://github.com/janpaepke/ScrollMagic/issues/734 고정 섹션이 점프 한다.. setpin에서 점프하는 현상.. http://mistral02.smb-hexagroup.com/ http://agenciaoxigenio.com.br/clientes/viavarejo/pontofrio/itaucard/ 등등에서 익스플로러 스크롤 시 떨림 현상이 지속 된다.. 해당 현상은 ScrollMagic.js 파일에서 확인하면 알 수 있듯이 setpin에 해당하는 위치의 style에 top 수치가..
2019.12.30 -
[PHP] 스마트에디터 SmartEditor 2.0
네이버 스마트에디터가 가장깔끔하고 오픈소스에 심플한 느낌.. 일단 네이버 Developers 경로 https://developers.naver.com/opensource/tools/editor/ 배포경로가 https://github.com/naver/smarteditor2로 바뀌었습니다. SmartEditor 3.0은 대외 공개하고 있지 않습니다. 라고 한다. GitHub에서 받을 수 있고 매우 친절하다? 유저 가이드 http://naver.github.io/smarteditor2/user_guide/ SmartEditor2는 JavaScript로 구현된 웹 기반의 WYSIWYG 편집기이다. 글꼴, 글자 크기, 줄 간격 등을 자유롭게 설정할 수 있으며, 단어 찾기/바꾸기와 같은 편리한 기능을 제공한다. ..
2019.08.08 -
자바스크립트 특정 문자 제거 및 정규식 기타 설명
자바스크립트에서 특정문자 또는 특수문자를 제거할때,-가 여러번 있는 문자열(주민번호,전화번호)을 단순히 replace('-','')로 하면, 처음 -기호만 삭제되고 나머지는 삭제되지 않습니다. 하여 아래와 같이 해야 가능합니다.value.replace(/\-/g,'');-기호가 특수문자 이기때문에 \역슬래시를 붙여줍니다. 다른 정규식 보기특정문자 제거 : str.replace(/\-/g,''); 앞의 공백 제거 : str.replace(/^\s+/,''); 뒤의 공백 제거 : str.replace(/\s+$/,''); 앞뒤 공백 제거 : str.replace(/^\s+|\s+$/g,''); 문자열 내의 공백 제거 : str.replace(/\s/g,''); 개행 제거 : str.replace(/\n/g,..
2018.07.05 -
자바스크립트 urlencode(), urldecode(), rawurlencode(), rawurldecode()
php 함수 대타 용 javascript..! function urlencode(str) { str = (str + '').toString(); return encodeURIComponent(str) .replace(/!/g, '%21') .replace(/'/g, '%27') .replace(/\(/g, '%28') .replace(/\)/g, '%29') .replace(/\*/g, '%2A') .replace(/%20/g, '+');} function urldecode(str) { return decodeURIComponent((str + '') .replace(/%(?![\da-f]{2})/gi, function() { return '%25'; }) .replace(/\+/g, '%20'));} ..
2017.07.02 -
[php] a태그 sms 문자 보내기&내용삽입 ios & android
a태그로 sms문자보내기 검색을 하니.. 문자보내기 를 사용하면 내장스키마를 통해서 문자를 보낼 수 있다고 적혀있었다... ios는 body를 지원하지 않는다라나 어쩐다라나..라고 적어둔 사람들이 있던데... 하지만... 아니드라...? 아이폰은 ?가 아닌 &를 사용하면 되드라... 문자보내기 요딴식으로.. 그래서 php $_SERVER를 사용해서 를 추가 해주면 아이폰을 걸러서 &를 입력 해 주면 되더라..
2017.05.22 -
PRIVACY POLICY
PRIVACY POLICY This privacy policy governs your use of the Android application for mobile devices that was created by GomCenter Apps. Personal information We do not collect personally identifiable information about you. In other words, we do not collect information such as your name, address, phone number, email address or precise geographic location. Contact us If you have any questions please ..
2017.02.08