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
ホーム
Web
HTML
HTML
– category –
Web
HTML
HTML
シンプルなボタン10選
ボタンを作りたいけど。。。バリエーション教えて♪ 色々あるよ!では見てみよう♪ ...
July 11, 2024
HTML
シンプルな見出し10選
見出しを作りたいけど。。。バリエーション教えて♪ 色々あるよ!では見てみよう♪ ...
July 10, 2024
July 11, 2024
HTML
【コピペOK!】HTMLのheadタグの書き方を徹底解説!
headタグの書き方って難しいよね。。。 分かりやすく教えるよ!では見てみよう♪ HT...
June 28, 2024
June 29, 2024
HTML
HTMLにつけるclass名(クラス名)の命名規則の考え方を徹底解説!
class名(クラス名)の付け方って悩むよね〜〜! 分かりやすく教えるよ!では見てみ...
June 20, 2024
June 28, 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); }); }); }); });