mirror of
https://github.com/zenorocha/clipboard.js.git
synced 2023-08-10 21:12:48 +03:00
Creates a new instance of Clipboard for snippet buttons #68
This commit is contained in:
@ -1,17 +1,21 @@
|
|||||||
(function() {
|
var snippets = document.querySelectorAll('.snippet');
|
||||||
'use strict';
|
|
||||||
|
|
||||||
var identifier = 0;
|
[].forEach.call(snippets, function(snippet) {
|
||||||
var snippets = Array.prototype.slice.call(document.querySelectorAll('pre.snippet'));
|
snippet.firstChild.insertAdjacentHTML('beforebegin', '<button class="btn" data-clipboard-snippet><img class="clippy" width="13" src="assets/images/clippy.svg" alt="Copy to clipboard"></button>');
|
||||||
|
});
|
||||||
|
|
||||||
snippets.forEach(function(snippet) {
|
var clipboardSnippets = new Clipboard('[data-clipboard-snippet]', {
|
||||||
snippet.id = 'snip' + identifier;
|
target: function(trigger) {
|
||||||
|
return trigger.nextElementSibling;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
var copyBtn = document.createElement('span');
|
clipboardSnippets.on('success', function(e) {
|
||||||
|
e.clearSelection();
|
||||||
|
|
||||||
copyBtn.className = 'btn clip';
|
showTooltip(e.trigger, 'Copied!');
|
||||||
copyBtn.setAttribute('data-clipboard-target', '#snip' + identifier++);
|
});
|
||||||
|
|
||||||
snippet.parentElement.insertBefore(copyBtn, snippet);
|
clipboardSnippets.on('error', function(e) {
|
||||||
});
|
showTooltip(e.trigger, fallbackMessage(e.action));
|
||||||
})();
|
});
|
||||||
|
@ -100,45 +100,9 @@ h3 {
|
|||||||
opacity: .3;
|
opacity: .3;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Code
|
|
||||||
========================================================================== */
|
|
||||||
|
|
||||||
pre code {
|
|
||||||
font-size: 14px;
|
|
||||||
line-height: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
span.btn.clip {
|
|
||||||
float: right;
|
|
||||||
height: 2em;
|
|
||||||
margin: 0.25vw 0 0 0.25vw;
|
|
||||||
background-image: url("../images/clippy.svg");
|
|
||||||
background-size: 60%;
|
|
||||||
background-position: center;
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
}
|
|
||||||
|
|
||||||
code {
|
|
||||||
background-color: #E8F5F2;
|
|
||||||
border-radius: 3px;
|
|
||||||
color: #1BC1A1;
|
|
||||||
font-size: 85%;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0.2em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hljs-keyword {
|
|
||||||
color: #008080;
|
|
||||||
font-weight: normal;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Example
|
/* Example
|
||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
|
||||||
.flash {
|
|
||||||
margin-bottom: 15px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.example {
|
.example {
|
||||||
position: relative;
|
position: relative;
|
||||||
margin: 15px 0 0;
|
margin: 15px 0 0;
|
||||||
@ -146,6 +110,7 @@ code {
|
|||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
border-radius: 4px 4px 0 0;
|
border-radius: 4px 4px 0 0;
|
||||||
border: 1px solid #ddd;
|
border: 1px solid #ddd;
|
||||||
|
z-index: 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
.example p {
|
.example p {
|
||||||
@ -165,12 +130,12 @@ code {
|
|||||||
border-radius: 4px 0 4px 0;
|
border-radius: 4px 0 4px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.example + pre {
|
.example + .snippet {
|
||||||
background: #f8f8f8;
|
background: #f8f8f8;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
border: 1px solid #ddd;
|
border: 1px solid #ddd;
|
||||||
clear: both;
|
clear: both;
|
||||||
margin-top: -20px;
|
top: -20px;
|
||||||
padding: 20px 0 0;
|
padding: 20px 0 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -192,6 +157,53 @@ textarea {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Code
|
||||||
|
========================================================================== */
|
||||||
|
|
||||||
|
.snippet {
|
||||||
|
position: relative;
|
||||||
|
overflow: visible;
|
||||||
|
}
|
||||||
|
|
||||||
|
.snippet code {
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.snippet .btn {
|
||||||
|
-webkit-transition: opacity 0.3s ease-in-out;
|
||||||
|
-o-transition: opacity 0.3s ease-in-out;
|
||||||
|
transition: opacity 0.3s ease-in-out;
|
||||||
|
opacity: 0;
|
||||||
|
padding: 2px 6px;
|
||||||
|
position: absolute;
|
||||||
|
right: 4px;
|
||||||
|
top: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.snippet:hover .btn {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.example + .snippet .btn {
|
||||||
|
top: 22px;
|
||||||
|
right: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
code {
|
||||||
|
background-color: #E8F5F2;
|
||||||
|
border-radius: 3px;
|
||||||
|
color: #1BC1A1;
|
||||||
|
font-size: 85%;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0.2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hljs-keyword {
|
||||||
|
color: #008080;
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
|
||||||
/* Support
|
/* Support
|
||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user