일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 초기 구축
- NextJS
- Next.js 14
- JavaScript
- docker 설치
- memcached
- React
- java8
- swagger
- generate pojos
- generate entity
- java9
- custom valid
- 도커
- ollama langflow
- SpringBoot
- JPA
- 리눅스
- jpa entity자동
- docker
- CentOS6
- 초기 세팅
- Java
- jvm
- header setting
- 헤더 설정
- dto valid
- spring
- MySQL
- spring boot
- Today
- Total
목록분류 전체보기 (291)
개발자의 길
//우선 리스트에 값을 넣고 ArrayList mainList=new ArrayList(); mainList.add("5"); mainList.add("6"); mainList.add("2"); mainList.add("8"); mainList.add("10"); //랜덤으로 넣을 리스트 객체 생성후 ArrayList mainRandomList=new ArrayList(); Random ra = new Random(); int mainSize= mainList.size(); //사이즈 따로 구해서 for(int i=0; i
페이스북 oauth 인증 받아서 데이터 가져오기 1 . 우선 해당 페이스북 계정에 로그인을 한 후 하단에 '개발자' 탭 - > 상당에 '앱' 탭 클릭 이동 -> 새 앱 만들기 까지 하면 app id 와 app secret 키를 발급 받을수 있다. 2. https://www.facebook.com/dialog/oauth?client_id=앱 아이디&redirect_uri=리턴url&scope=email,read_stream,offline_access (scope는 아마도 권한이지 않을까 싶음..) 입력 하면 리턴 url 로 access code가 리턴됨 3. https://graph.facebook.com/oauth/access_token?client_id=앱 아이디&redirect_uri=리턴url&cl..
[jquery] onload 함수 1. $(function(){ 실행할 함수(); }); 2. $(document).ready(function(){ 실행할 함수(); }); 3. $(window).load(function(){ 실행할 함수(); }); 일반 dom에서 onload 1. 2. window.onload=function(){ 실행할 함수(); }
반올림 올림 버림 반올림 값 : 올림 값 : 버림 값 :
기초 공부로 괜찮은듯.ㅎ
jQuery Grid Plugin http://www.trirand.com/blog/?page_id=6 (*******) 팬시박스 http://fancy.klade.lv/ (****) 디자이너를 위한 jquery http://www.webdesignerwall.com/demo/jquery/(****) 그리드 http://www.reconstrukt.com/ingrid/example2.html AutoScroll http://jdsharp.us/jQuery/plugins/AutoScroll/demo.php (****) drag and drop http://host.sonspring.com/dragdrop/ (***) http://www.mootools.net/ (자바스크립트 프레임워크) JQuery메뉴얼 ..
RevealTrans 필터를 이용하여 이미지를 점진적으로 나타나게 했다가 점진적으로 사라지게 할 수 있는 효과를 살펴보도록 하겠다. 우선 간단한 예제부터 먼저 살펴보도록 하자. 아래 RevealTrans 필터 적용을 한 번 클릭하면 이미지가 점진적으로 사라질 것이다. 또 한 번 클릭하면 이미지가 점진적으로 나타날 것이다. 위 스크립트에서 objImg는 태그를 통해 정의한 객체 ID이다. 즉 이미지를 포함하고 있는 SPAN 영역에 대한 아이디인 것이다. 이 ID를 통해 스타일과 필터 속성에 접근할 수가 있는 것이다. transtition 값을 조금씩 변경하면서 테스트 하면 자신이 원하는 리빌트랜스 효과를 얻을 수 있을 것이다.
function getByteLength(obj, slength) { var len = 0; s = obj.value; hlength = slength/2; if ( s == null ) { return ''; } for(var i=0;i slength) { alert("영문"+slength+"자리까지만 입력할수 있습니다.(한글은 "+hlength+"자 입력)"); obj.select(); return false; } return true; } --------------------------------------------------- onclick="getByteLength(this, 4000);"
input autocomplete, autofocus, datalist 테스트 참고자료 : http://www.quackit.com/html_5/tags/html_datalist_tag.cfm 실행 소스 실행화면 opera 10.6 - autocomplete 실행, autofucus 미실행, placehoder 미실행 safari,chrome - autocomplete 미실행, autofucus 실행, placehoder 실행