MENU
BLOG
Web
HTML
CSS
jQuery
JavaScript
GSAP
WordPress
Original Theme
SWELL
Plugin
Contact Form 7
Design
Illustrator
Photoshop
Figma
Tool
ICON
IMAGE
Convenient Tool
Profile
Web制作のあれこれの情報を発信提供いたします
BLOG
Web
HTML
CSS
jQuery
JavaScript
GSAP
WordPress
Original Theme
SWELL
Plugin
Contact Form 7
Design
Illustrator
Photoshop
Figma
Tool
ICON
IMAGE
Convenient Tool
Profile
ホーム
Profile
Profile
WEB制作(コーダー&デザイナー)をやっています
Chiiです!
便利なコードストックとつぶやきブログを発信しています
東京出身
旅と投資と食べることが好き
座右の名は石橋を叩いて渡る
事業サイトはこちら
閉じる
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); }); }); }); });