clipboard.js
by Marcel Ferdinand
HTML
<input type="text" id="website" value="http://www.elevenia.co.id" />
<button data-copytarget="#website">copy</button>
CSS
body {
font-family: sans-serif;
font-size: 1em;
color: #333;
background-color: #ddd;
}
label {
clear: both;
display: block;
font-size: 0.85em;
font-weight: bold;
padding: 0.8em 0 0.2em 0;
user-select: none;
}
input, button {
float: left;
font-size: 1em;
padding: 3px 6px;
margin: 0;
border: 1px solid #333;
outline: 0;
box-shadow: none;
}
::-moz-focus-inner {
padding: 0;
border: 0;
}
input {
width: 15em;
background-color: #fff;
border-right: 0 none;
border-radius: 3px 0 0 3px;
}
button {
position: relative;
background-color: #aaa;
border-radius: 0 3px 3px 0;
cursor: pointer;
}
.copied::after {
position: absolute;
top: 12%;
right: 100%;
display: block;
content: "Copied";
font-size: 0.75em;
padding: 2px 10px;
color: #fff;
background-color: #ccc;
border-radius: 3px;
opacity: 0;
will-change: opacity, transform;
animation: showcopied 1.5s ease;
}
@keyframes showcopied {
0% {
opacity: 0;
transform: translateY(100%);
}
50% {
opacity: 1;
transform: translateY(0);
}
100% {
opacity: 1;
}
}
JavaScript
(function() {
'use strict';
// click events
document.body.addEventListener('click', copy, true);
// event handler
function copy(e) {
// find target element
var
t = e.target,
c = t.dataset.copytarget,
inp = (c ? document.querySelector(c) : null);
// is element selectable?
if (inp && inp.select) {
// select text
inp.select();
try {
// copy text
document.execCommand('copy');
inp.blur();
// copied animation
t.classList.add('copied');
setTimeout(function() { t.classList.remove('copied'); }, 1500);
}
catch (err) {
alert('please press Ctrl/Cmd+C to copy');
}
}
}
})();