Blog Content

  • 변수의 적용 범위

    Category 개발연습막쓰기/개발연습 막쓰기 on 2016. 5. 2. 20:08

    // 변수의 적용 범위 // 전역 변수를 선언하면 모든 함수에서 사용가능하지만, 전역변수의 값을 변경 할 순 없다.// 변수의 초기값을 지정할 때 사용한다.var global = value; // 함수 안에서 선언하는 변수는 지역변수라 하고, 함수 내에서만 사용가능 하다.function a (){ var localA = value; global ; // 함수 안에서 전역변수라 사용 가능하다. localA ; // 함수 않에서의 변수라 사용 가능하다. localAA ; // 함수 안에서의 자식함수의 변수는 사용 불가능하다. localB ; // 함수 안에서의 외부함수는 사용 할 수 없다.function aa(){var localAA = value; global ; // 사용 가능하다. localA ; //..

    Read more
  • 서브라임텍스트

    Category 개발연습막쓰기/개발연습 막쓰기 on 2016. 4. 29. 10:24

    * 서브라임 텍스트 브라우저 미리보기 화면 설정하기 방법 On Sublime Text 3 F12 key is bound to "goto_definition" command by default.서브라임텍스트3에선 F12키에 "Goto Definition"명령이 기본으로 지정되었음요. This package was conflicting with that key, this no longers happens. 이게 사이드바 인헨스먼트가 지정한 키랑 충돌해서, 제대로 동작을 안하게 되었음요. You need to manually add the keys now:이제는 당신이 직접 수동으로 키를 지정해 주셔야 함요! Go to Preferences -> Package Settings -> Side Bar -> Key..

    Read more
  • 서브라임텍스트 단축키모음

    Category 개발연습막쓰기/개발연습 막쓰기 on 2016. 4. 26. 14:07

    단축키 설명 서브라임단축키 https://windtale.net/blog/sublime-text-tip/ http://www.hans.or.kr/2014/01/sublime-text-10.html

    Read more
  • 트윈맥스

    Category 개발연습막쓰기/개발연습 막쓰기 on 2016. 4. 26. 13:23

    그린삭에서 제공하는 애니메이션 효과 사이트 http://greensock.com/jump-start-js

    Read more
  • 서브라임텍스트3 플러그인

    Category 개발연습막쓰기/개발연습 막쓰기 on 2016. 4. 26. 11:37

    서브라임정보 모음 http://www.hans.or.kr/2013/11/sublime-text3.html http://webdir.tistory.com/396 http://demun.tistory.com/category/%ED%8D%BC%EB%B8%94%EB%A6%AC%EC%85%94/SublimeText http://www.hans.or.kr/2014/01/sublime-text-10.html Bracket HighlighterEmmetSFTPDocBlockrSideBarEnhancements

    Read more
  • 이벤트 타입

    Category 개발연습막쓰기/개발연습 막쓰기 on 2016. 4. 25. 22:03

    제이쿼리 이벤트 타입 mousedown> 요소에 마우스를 올려놓은 상태에서 해당요소를 클릭할때. mouseup> 요소에 마우스를 올려놓은 상태에서 해당요소를 클릭했다가 마우스가 벗어났을때. mousemove> 요소안에서 마우스가 움직일때 click> 요소를 클릭 했을때. dblclick> 요소를 더블 클릭 했을때. keydown> 요소에 포커스를 맞춘 상태에서 키보드를 눌렀을때. keyup> 요소에 포커스를 맞춘 상태에서 키보드를 떼었을때 fucus > 요소에 포커스가 일치했을 때 (포커스가 있는 요소만 "엥커 a href="#"") blur > 요소에 포커스를 잃었을 때 change> 입력내용이 변경되었을때 (textarea, input, select....) resize> 요소의 크기를 다시 설정 했..

    Read more
  • 라이브러리 사이트

    Category 개발연습막쓰기/개발연습 막쓰기 on 2016. 4. 25. 19:50

    라이브러리 사이트 http://jquery.com/ http://prototypejs.org/learn/ http://mootools.net/ http://dojotoolkit.org/

    Read more
  • 생활코딩

    Category 개발연습막쓰기/개발연습 막쓰기 on 2016. 4. 15. 16:50

    생활코딩https://opentutorials.org/course/1375 https://opentutorials.org/course/1375

    Read more
  • css3 Animate.css

    Category 개발연습막쓰기/개발연습 막쓰기 on 2016. 4. 5. 15:32

    css3 애니메이션 https://daneden.github.io/animate.css/

    Read more
  • 제이쿼리 애니메이션 예제

    Category 개발연습막쓰기/개발연습 막쓰기 on 2016. 3. 28. 10:07

    제이쿼리 애니메이션 예제 http://www.everdevel.com/kr/jquery/animate.php http://biketago.com/etc/index.html?m=list&id=13 http://superkts.com/jquery/animate http://mong9.com/index.cgi?page_code=otherpage&code=study_js&num=2 http://programmingsummaries.tistory.com/316 https://developers.google.com/web/fundamentals/design-and-ui/animations/css-vs-javascript?hl=ko

    Read more