ファイルコンバーター
目次
ファイルコンバーター
ファイルをどんなフォーマットにも変換できます
あわせて読みたい
Convertio — ファイルコンバーター
Convertio -オンライン上でファイルを簡単に変換するツールです。309以上の様々な文書、画像、スプレッドシート、電子書籍、アーカイブ、プレゼンテーション、音声及び動...
document.addEventListener('DOMContentLoaded', function() {
const copyButtons = document.querySelectorAll('.copy-button');
copyButtons.forEach(button => {
button.addEventListener('click', function() {
const codeContainer = this.previousElementSibling;
const code = codeContainer.textContent;
navigator.clipboard.writeText(code).then(() => {
this.textContent = 'Copied!';
setTimeout(() => {
this.textContent = 'Copy';
}, 2000);
}).catch(err => {
console.error('Failed to copy text: ', err);
});
});
});
});