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
ホーム
Tool
Convenient tool
Convenient tool
– category –
Tool
Convenient tool
Convenient tool
画像圧縮便利ツール
画像を圧縮したいんだけど。。。便利なルーツあるかな? あるよ!では見てみよう♪ ...
June 19, 2024
June 30, 2024
1
2
閉じる
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); }); }); }); });