반응형
반응형

SVG, dashoffset, X,Y, animation

https://jsfiddle.net/user/dashboard/fiddles/

반응형
반응형
반응형
반응형

정중하게 행동하면 다른 사람들이 얕잡아 본다는 생각은
잘못된 판단이다. 도리어 정중함은
사회적 지위와 영향력을 높여준다.
사람들은 무례한 의사보다 정중한 의사의 사회적 지위가 78% 높다고 판단했다.
정중한 의사가 무례한 의사보다 1.2 배 이상 리더다우며,
23%이상 유능할 뿐 아니라, 16%이상 영향력이 강하다고 보았다.
- 크리스틴 포래스, 무례함의 비용 

사람들은 정중한 사람과 기꺼이 협업하려고 합니다.
리더의 예의바름은 직원들에게 더 안전하고 행복한 느낌을 줍니다.
고맙다고 말하기, 주의 깊게 경청하기, 부드럽게 질문하기,
미소 짓기, 가볍게 인사하기 같은 사소해 보이지만 정중한 행동들이
경쟁력의 원천입니다.

반응형
반응형

몸에 열이 날 수 있게 몸을 풀고 
선무도의 발차기, 승형(품새)을 수련했다. 
추운 겨울에도 몸은 뜨끈뜨끈해지고 호흡이 
더 크게 느껴진다. 몸에 열이 나니 점퍼를 벗고 
다시 한 번 발을 찬다. 얼어있던 코끝, 발끝에도 
열이 나면서 힘이 실린다. 움츠려 들었던 어깨, 
가슴도 편안해지고 움직일수록 몸이 조화를 
이룬다. 힘이 실린 손끝은 날카롭게 
차가운 허공에 몸으로 동작을 
그려간다. 


- 김재덕의《나는 오늘도 수련하러 갑니다》중에서 -


* 발차기만 잘 연마해도 몸이 달라집니다.
한겨울에도 열이 나고 사지에 힘이 실립니다.
수련에는 나이가 따로 없습니다. 한살이라도 젊고 
어릴수록 좋고, 나이 들었어도 그래서 더 좋습니다.
중요한 것은 건강할 때 시작하는 것입니다.
건강을 잃으면 하고 싶어도 못합니다. 
그럴 힘도 여유도 없습니다.

반응형

'아침편지' 카테고리의 다른 글

좀 더 고급스러운 것으로  (0) 2019.06.20
작은 경험, 위대한 경험  (0) 2019.06.19
'강한성당'(强漢盛唐)  (0) 2019.06.17
길을 잃은 적이 있으세요?  (0) 2019.06.17
우울과 후회  (0) 2019.06.14
반응형

해상도/일람

해상도/일람

https://namu.wiki/w/%ED%95%B4%EC%83%81%EB%8F%84/%EC%9D%BC%EB%9E%8C

 

해상도/일람 - 나무위키

Video Graphics Array 이름해상도비율설명qqVGA160×1204:3HqVGA240×1603:2Half quarter VGA320×2404:3WqVGA400×2405:3Wide quarter VGAHVGA480×3203:2VGA640×4804:3-WVGA800×4805:3FWVGA854×48016:9Full Wide VGASVGA800×6004:3DVGA960×6403:2WSVGA1024×576 1024x 60016:9 17:10 그래픽 어레

namu.wiki

eXtended Graphics Array

이름

해상도

비율

설명

XGA[10]

1024×768

4:3

-

WXGA

1280×768[11] 
1280×800

5:3 
16:10

Wide XGA

FWXGA

1366×768

16:9

Full Wide XGA[12]

XGA+

1152×864[13]

4:3

XGA Plus

WXGA+

1440×900

16:10

Wide XGA Plus

WSXGA

1680×1050

16:10

Widescreen Super XGA

SXGA

1280×1024

5:4

Super XGA

SXGA+

1400×1050

4:3

Super XGA

UXGA

1600×1200

4:3

Ultra XGA

WUXGA

1920×1200

16:10

Wide Ultra XGA


 

반응형
반응형

웹에서 요소 복사. HTML DOM execCommand() Method

현재 선택영역의 텍스트를 인자로 받은 값을 통해 변환시킵니다. 

execCommand 에서 "copy" 명령 사용

document.execCommand('Italic')           // 기울이기
document.execCommand('Underline')        // 밑줄
document.execCommand('StrikeThrough')    // 중간줄
document.execCommand('Cut')              // 자르기
document.execCommand('Copy')             // 복사하기
document.execCommand('Paste')            // 붙혀넣기
document.execCommand('Undo')             // 실행취소
document.execCommand('Redo')             // 다시실행
document.execCommand('insertorderedList')    // 글번호 매기기
document.execCommand('insertunorderdList')   // 글머리 매기기
document.execCommand('outdent')          // 내어쓰기
document.execCommand('indent')           // 들여쓰기
document.execCommand('justifyleft')      // 왼쪽정렬
document.execCommand('justifycenter')    // 가운데정렬
document.execCommand('justifyright')     // 오른쪽정렬

Syntax

document.execCommand(command, showUI, value)

Parameter Values

ValueDescription

command Specifies the name of the command to execute on the selected section. 

Legal values: 
"backColor"
"bold"
"createLink"
"copy"
"cut"
"defaultParagraphSeparator"
"delete"
"fontName"
"fontSize"
"foreColor"
"formatBlock"
"forwardDelete"
"insertHorizontalRule"
"insertHTML"
"insertImage"
"insertLineBreak"
"insertOrderedList"
"insertParagraph"
"insertText"
"insertUnorderedList"
"justifyCenter"
"justifyFull"
"justifyLeft"
"justifyRight"
"outdent"
"paste"
"redo"
"selectAll"
"strikethrough"
"styleWithCss"
"superscript"
"undo"
"unlink"
"useCSS"
showUI A Boolean, specifies if the UI should be shown or not
value Some commands need a value to be completed

 

반응형

+ Recent posts