<button id="copy-button" data-clipboard-text="복사할 문자" title="Click to copy me."><img src="./images/sub/share_blog.gif" alt="블로그" /></button>
$('document').ready(function(){
var clip = new ZeroClipboard( document.getElementById("copy-button"), {
moviePath: "/ZeroClipboard.swf"
} );
clip.on( 'load', function(client) {
// alert( "movie is loaded" );
} );
clip.on( 'complete', function(client, args) {
//this.style.display = 'none'; // "this" is the element that was clicked
//alert("Copied text to clipboard: " + args.text );
alert('클립보드에 복사하였습니다.')
} );
clip.on( 'mouseover', function(client) {
// alert("mouse over");
} );
clip.on( 'mouseout', function(client) {
// alert("mouse out");
} );
clip.on( 'mousedown', function(client) {
// alert("mouse down");
} );
clip.on( 'mouseup', function(client) {
// alert("mouse up");
} );
})
이런 식으로 플래시 버튼을 만들고 클립보드 개체를 만들어서 쓰면 된다.
다른 예제는 이거랑 다르던데 작동을 안 했다.
'쓸만한 주저리' 카테고리의 다른 글
빨주노초파남보(각1px*1px)이미지를 6px로 강제로 줄였을때 웹브라우저에서는 어떻게 되는가? (0) | 2014.06.17 |
---|---|
엉덩이, 궁둥이, 볼기 (0) | 2014.02.25 |
크롬을 쓰는데 휠을 돌리면 확대/축소가 될 때 (0) | 2014.01.24 |
capicom을 이용한 암/복호화 (0) | 2013.12.02 |
html tidy (0) | 2013.11.01 |