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
ホーム
blog
blog
– archive –
ジョルジョ・デ・キリコ(デキリコ展)
6月の最後の週末とあるタイミングでジョルジョ・デ・キリコ(デキリコ展)に行くこ...
July 1, 2024
独学?スクール?。。。ロードマップ!!!
人それぞれ。。。会社員向きとフリーランス向きな方がいると思います!会社員向き...
June 24, 2024
July 9, 2024
甘い誘惑♪
考えるより即行動!いつでもポジティブChiiです コーディングを勉強し始めた時に新...
June 17, 2024
June 20, 2024
はじめに。。。
WEB制作(コーダー&デザイナー)を行なっているChiiです!日頃気になったことやWE...
June 15, 2024
June 20, 2024
1
閉じる
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); }); }); }); });