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
ホーム
2024年
6月
2024年6月
– date –
CSS
文字を折り返さないCSS
white-space: nowrapを利用する white-space: nowrapは、改行を強制的に禁止すると...
June 17, 2024
June 19, 2024
CSS
長い文章を…に省略できる方法
CODE 基本のCSS See the Pen 3点リーダー by ちいうさ (@zqnixpal-the-looper) on...
June 17, 2024
1
2
3
閉じる
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); }); }); }); });