mirror of
https://github.com/zenorocha/clipboard.js.git
synced 2023-08-10 21:12:48 +03:00
Adds a bunch of demos
This commit is contained in:
parent
6b1f6b22a6
commit
57c7fcf9a4
@ -1,5 +1,5 @@
|
|||||||
/.*/
|
/.*/
|
||||||
/example/
|
/demo/
|
||||||
/test/
|
/test/
|
||||||
/.*
|
/.*
|
||||||
/bower.json
|
/bower.json
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
"main": "dist/clipboard.js",
|
"main": "dist/clipboard.js",
|
||||||
"ignore": [
|
"ignore": [
|
||||||
"/.*/",
|
"/.*/",
|
||||||
"/example/",
|
"/demo/",
|
||||||
"/test/",
|
"/test/",
|
||||||
"/.*",
|
"/.*",
|
||||||
"/bower.json",
|
"/bower.json",
|
||||||
|
28
demo/constructor-node.html
Normal file
28
demo/constructor-node.html
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>constructor-node</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<!-- 1. Define some markup -->
|
||||||
|
<button id="btn" data-clipboard-text="1">Copy</button>
|
||||||
|
|
||||||
|
<!-- 2. Include library -->
|
||||||
|
<script src="../dist/clipboard.min.js"></script>
|
||||||
|
|
||||||
|
<!-- 3. Instantiate clipboard by passing a HTML element -->
|
||||||
|
<script>
|
||||||
|
var btn = document.getElementById('btn');
|
||||||
|
var clipboard = new Clipboard(btn);
|
||||||
|
|
||||||
|
clipboard.on('success', function(e) {
|
||||||
|
console.log(e);
|
||||||
|
});
|
||||||
|
|
||||||
|
clipboard.on('error', function(e) {
|
||||||
|
console.log(e);
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
30
demo/constructor-nodelist.html
Normal file
30
demo/constructor-nodelist.html
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>constructor-nodelist</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<!-- 1. Define some markup -->
|
||||||
|
<button data-clipboard-text="1">Copy</button>
|
||||||
|
<button data-clipboard-text="2">Copy</button>
|
||||||
|
<button data-clipboard-text="3">Copy</button>
|
||||||
|
|
||||||
|
<!-- 2. Include library -->
|
||||||
|
<script src="../dist/clipboard.min.js"></script>
|
||||||
|
|
||||||
|
<!-- 3. Instantiate clipboard by passing a list of HTML elements -->
|
||||||
|
<script>
|
||||||
|
var btns = document.querySelectorAll('button');
|
||||||
|
var clipboard = new Clipboard(btns);
|
||||||
|
|
||||||
|
clipboard.on('success', function(e) {
|
||||||
|
console.log(e);
|
||||||
|
});
|
||||||
|
|
||||||
|
clipboard.on('error', function(e) {
|
||||||
|
console.log(e);
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
29
demo/constructor-selector.html
Normal file
29
demo/constructor-selector.html
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>constructor-selector</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<!-- 1. Define some markup -->
|
||||||
|
<button class="btn" data-clipboard-text="1">Copy</button>
|
||||||
|
<button class="btn" data-clipboard-text="2">Copy</button>
|
||||||
|
<button class="btn" data-clipboard-text="3">Copy</button>
|
||||||
|
|
||||||
|
<!-- 2. Include library -->
|
||||||
|
<script src="../dist/clipboard.min.js"></script>
|
||||||
|
|
||||||
|
<!-- 3. Instantiate clipboard by passing a string selector -->
|
||||||
|
<script>
|
||||||
|
var clipboard = new Clipboard('.btn');
|
||||||
|
|
||||||
|
clipboard.on('success', function(e) {
|
||||||
|
console.log(e);
|
||||||
|
});
|
||||||
|
|
||||||
|
clipboard.on('error', function(e) {
|
||||||
|
console.log(e);
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
32
demo/function-target.html
Normal file
32
demo/function-target.html
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>function-target</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<!-- 1. Define some markup -->
|
||||||
|
<button class="btn">Copy</button>
|
||||||
|
<div>hello</div>
|
||||||
|
|
||||||
|
<!-- 2. Include library -->
|
||||||
|
<script src="../dist/clipboard.min.js"></script>
|
||||||
|
|
||||||
|
<!-- 3. Instantiate clipboard -->
|
||||||
|
<script>
|
||||||
|
var clipboard = new Clipboard('.btn', {
|
||||||
|
target: function() {
|
||||||
|
return document.querySelector('div');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
clipboard.on('success', function(e) {
|
||||||
|
console.log(e);
|
||||||
|
});
|
||||||
|
|
||||||
|
clipboard.on('error', function(e) {
|
||||||
|
console.log(e);
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
31
demo/function-text.html
Normal file
31
demo/function-text.html
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>function-text</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<!-- 1. Define some markup -->
|
||||||
|
<button class="btn">Copy</button>
|
||||||
|
|
||||||
|
<!-- 2. Include library -->
|
||||||
|
<script src="../dist/clipboard.min.js"></script>
|
||||||
|
|
||||||
|
<!-- 3. Instantiate clipboard -->
|
||||||
|
<script>
|
||||||
|
var clipboard = new Clipboard('.btn', {
|
||||||
|
text: function() {
|
||||||
|
return 'to be or not to be';
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
clipboard.on('success', function(e) {
|
||||||
|
console.log(e);
|
||||||
|
});
|
||||||
|
|
||||||
|
clipboard.on('error', function(e) {
|
||||||
|
console.log(e);
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
28
demo/target-div.html
Normal file
28
demo/target-div.html
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>target-div</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<!-- 1. Define some markup -->
|
||||||
|
<div>hello</div>
|
||||||
|
<button class="btn" data-clipboard-action="copy" data-clipboard-target="div">Copy</button>
|
||||||
|
|
||||||
|
<!-- 2. Include library -->
|
||||||
|
<script src="../dist/clipboard.min.js"></script>
|
||||||
|
|
||||||
|
<!-- 3. Instantiate clipboard -->
|
||||||
|
<script>
|
||||||
|
var clipboard = new Clipboard('.btn');
|
||||||
|
|
||||||
|
clipboard.on('success', function(e) {
|
||||||
|
console.log(e);
|
||||||
|
});
|
||||||
|
|
||||||
|
clipboard.on('error', function(e) {
|
||||||
|
console.log(e);
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
28
demo/target-input.html
Normal file
28
demo/target-input.html
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>target-input</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<!-- 1. Define some markup -->
|
||||||
|
<input id="foo" type="text" value="hello">
|
||||||
|
<button class="btn" data-clipboard-action="copy" data-clipboard-target="#foo">Copy</button>
|
||||||
|
|
||||||
|
<!-- 2. Include library -->
|
||||||
|
<script src="../dist/clipboard.min.js"></script>
|
||||||
|
|
||||||
|
<!-- 3. Instantiate clipboard -->
|
||||||
|
<script>
|
||||||
|
var clipboard = new Clipboard('.btn');
|
||||||
|
|
||||||
|
clipboard.on('success', function(e) {
|
||||||
|
console.log(e);
|
||||||
|
});
|
||||||
|
|
||||||
|
clipboard.on('error', function(e) {
|
||||||
|
console.log(e);
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
28
demo/target-textarea.html
Normal file
28
demo/target-textarea.html
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>target-textarea</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<!-- 1. Define some markup -->
|
||||||
|
<textarea id="bar">hello</textarea>
|
||||||
|
<button class="btn" data-clipboard-action="cut" data-clipboard-target="#bar">Cut</button>
|
||||||
|
|
||||||
|
<!-- 2. Include library -->
|
||||||
|
<script src="../dist/clipboard.min.js"></script>
|
||||||
|
|
||||||
|
<!-- 3. Instantiate clipboard -->
|
||||||
|
<script>
|
||||||
|
var clipboard = new Clipboard('.btn');
|
||||||
|
|
||||||
|
clipboard.on('success', function(e) {
|
||||||
|
console.log(e);
|
||||||
|
});
|
||||||
|
|
||||||
|
clipboard.on('error', function(e) {
|
||||||
|
console.log(e);
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
x
Reference in New Issue
Block a user