일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 파이썬혼자공부하기
- 파이썬조건문
- 혼공파미션
- input
- 일본여행
- 파이썬공부
- 혼공파선택미션
- 나라여행
- hover style
- 파이썬문자열
- Python
- 일본 사슴
- 혼공파
- 파이썬
- 혼자공부하는파이썬
- 일본
- 비쥬얼스튜디오코드설치
- #파이썬
- 비쥬얼스튜디오코드
- 혼자여행
- 일본 관광
- 일본나라여행
- 파이썬혼공
- 호버스타일
- 한빛미디어
- 나라 사슴
- 조건문
- 일본 나라
- input style
- 혼공단
- Today
- Total
목록전체 글 (116)
Eveningstar
.prepend() : 선택된 모든 요소의 앞에 추가하는 메소드, 각 요소의 첫번째 자식 요소에 값을 추가함. .prepend(content)content -> 일치하는 요소의 집합, 각 요소의 시작 부분에 삽입할 Dom요소, 배열, html 문자열, jquery 객체 parameter description content Required. specifies the content to insert (can contain Html tags) possible values:- HTML Elements, jQuery objects, DOM elements function(index, html) Optional. Specifies a function that returns the content to insert -..
.prev():Get the immediately preceding sibling of each element in the set of matched elements. If a selector is provided, it retrieves the previous sibling only if it matches that selector. 선택 요소의 바로 이전에 오는 요소를 반환, 선택자가 인자로 제공되면, 선택자와 일치하는 경우에만 이전 형제 요소를 반환한다. .next():Get the immediately following sibling of each element in the set of matched elements. If a selector is provided, it retrieves the ..
.children() :Get the children of each element in the set of matched elements, optionally filtered by a selector. * find() vs children() find()는 선택된 요소의 하위 요소들을 모두 선택할 수 있지만, children()은 선택된 요소의 바로 아래 자식요소만 선택한다. $('부모요소').children('선택할 요소'); https://jsfiddle.net/jywoo/3yd91ryn/1/ https://jsfiddle.net/jywoo/w6ev1bqq/1/ .parent():Get the parent of each element in the current set of matched element..
rgb? hsla? hex? 흔히들 web에서 쓰는 색상은 rgb 값이라고 표현한다. 포토샵에서 저장할때 문서 설정을 rgb로 두어야 모니터에서 제대로 된 색상이 나온다고 할 때 그 rgb이다. (반대로 인쇄물은 cmyk) 그리고 css로 코딩할 때도 rgb값으로 코딩하는 경우를 많이 봐왔을 것이다. 예를 들어 background:rgb(255,255,255); 로 배경색을 지정하는 등의 방식으로 그런데 나는 rgb 코드가 너무 길다고 생각해서(...) hex 코드로 배경색을 지정해주는 것을 선호하는데 background:#222222 or background:#222 -> 숫자 6개가 동일하다면 3개 숫자만 단축으로 써줘도 된다. 이런식으로 사용을 하고 있다. 이렇듯 색상 값의 방법이 hex와 rgb가..