반응형
반응형

Youtube 반복재생 안될때. 

< iframe width="560" height="315" src="https://www.youtube.com/embed/vn6b2gj4EVc?rel=0&autoplay=1&modestbranding=1&loop=1&showinfo=0;playlist=vn6b2gj4EVc"

에서 마지막에 playlist= 에 동영상 코드를 동일하게 넣어주어라. 

그리고, rel= autoplay= 순서 바꾸지 말고. 

 

<iframe width="560" height="315" src="https://www.youtube.com/embed/vn6b2gj4EVc?rel=0&autoplay=1&modestbranding=1&loop=1&showinfo=0;playlist=vn6b2gj4EVc" ~~~></iframe>
반응형
반응형

JAVA, JSP - QR Code 만들기 소스 - ZXing ("Zebra Crossing") barcode scanning library for Java, Android

https://github.com/zxing/zxing

 

zxing/zxing

ZXing ("Zebra Crossing") barcode scanning library for Java, Android - zxing/zxing

github.com

java  android   barcode   barcode-scanner   zxing   qr-code   datamatrix   upc  

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

SVG, dashoffset, X,Y, animation

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

반응형
반응형

해상도/일람

해상도/일람

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