반응형

2017/08 54

Error:(1, 0) Your project path contains non-ASCII characters. This will most likely cause the build to fail on Windows. Please move your project to a different directory. See http://b.android.com/95744 for details. This warning can be disabled by adding..

Error:(1, 0) Your project path contains non-ASCII characters. This will most likely cause the build to fail on Windows. Please move your project to a different directory. See http://b.android.com/95744 for details. This warning can be disabled by adding the line 'android.overridePathCheck=true' to gradle.properties file in the project directory. 위와 같은 에러가 발생했습니다. 이것이 무엇이냐면 앱폴더가 있는 경로 중 영문이 아닌 값이..

IT/안드로이드 2017.08.24

Gradle 'talkkormoney' project refresh failed. Unable to start the daemon process.

Gradle 'talkkormoney' project refresh failed. Unable to start the daemon process. Error:Unable to start the daemon process.This problem might be caused by incorrect configuration of the daemon.For example, an unrecognized jvm option is used.Please refer to the user guide chapter on the daemon at https://docs.gradle.org/3.3/userguide/gradle_daemon.htmlPlease read the following process output to f..

IT/안드로이드 2017.08.24

AngularJS 이벤트

AngularJS 이벤트 다음 지시문 중 하나 이상을 사용하여 HTML 요소에 AngularJS 이벤트 리스너를 추가 할 수 있습니다. 1. ng-blur 2. ng-change 3. ng-click 4. ng-copy 5. ng-cut 6. ng-dblclick 7. ng-focus 8. ng-keydown 9. ng-keypress 10. ng-keyup 11. ng-mousedown 12. ng-mouseenter 13. ng-mouseleave 14. ng-mousemove 15. ng-mouseover 16. ng-mouseup 17. ng-paste 이벤트 지시문을 사용하여 특정 사용자 이벤트에서 AngularJS 함수를 실행할 수 있습니다. AngularJS 이벤트는 HTML 이벤트를 겹쳐 ..

IT/앵귤러js 2017.08.23

Error:CreateProcess error=216, %1의 버전이 실행 중인 Windows 버전과 호환되지 않습니다. 컴퓨터의 시스템 정보를 통해 x86(32비트) 또는 x64(64비트) 버전의 프로그램이 필요한지 확인하고 소프트웨어 게..

Error:CreateProcess error=216, %1의 버전이 실행 중인 Windows 버전과 호환되지 않습니다. 컴퓨터의 시스템 정보를 통해 x86(32비트) 또는 x64(64비트) 버전의 프로그램이 필요한지 확인하고 소프트웨어 게시자에게 문의하십시오 위 오류가 발생하는 것은 java가 설치되어 있지 않거나 안드로이드 스튜디오에 자바 경로가 설정되어 있지 않아서 나오는 증세입니다. 자바가 설치되지 않았다면 설치 하신 후 자바환경설정 셋팅 후 안드로이드 스튜디오에서 File -> Project Structure -> Use embedded JDK (recommended)에 자바 경로를 넣어주면 됩니다.

IT/안드로이드 2017.08.16

AngularJS Filters 사용자 입력을 기반으로 배열 필터링

AngularJS Filters 사용자 입력을 기반으로 배열 필터링 사용자 입력을 기반으로 배열 필터링ng-model입력 필드에 지시문을 설정하여 입력 필드의 값을 필터의 표현식으로 사용할 수 있습니다. 입력 필드에 문자를 입력하면 목록에 따라 일치 / 축소됩니다. {{ x }} [전체소스] Type a letter in the input field: {{ x }} The list will only consists of names matching the filter. 이미지와 같은 화면에서 input box에 목록에 있는 단어를 입력하게 되면 그 단어만 필터링해서 실시간으로 찾아주게 됩니다.

IT/앵귤러js 2017.08.09

CSS3 그라디언트 두번째

CSS3 그라디언트 그래디언트 방향을보다 잘 제어하려면 미리 정의 된 방향 (아래에서 위쪽, 오른쪽에서 왼쪽, 오른쪽 아래 등) 대신 각도를 정의 할 수 있습니다. 통사론background: linear-gradient(angle, color-stop1, color-stop2);각도는 수평선과 그라데이션 선 사이의 각도로 지정됩니다. 다음 예제는 선형 그래디언트에서 각도를 사용하는 방법을 보여줍니다.#grad { background: red; /* For browsers that do not support gradients */ background: -webkit-linear-gradient(-90deg, red, yellow); /* For Safari 5.1 to 6.0 */ background: -..

IT/css 2017.08.09
반응형