ホームページ > 記事 > ウェブフロントエンド > SVG を使用した
先日、JSON スキーマ ジェネレーターに取り組んでいて、
いくつか調査したところ、複数のアプローチが見つかりました:
どれも気に入らなかったです!最初のものは見た目が鮮明ではなく、
2 番目の方法では、順序付きリストを維持するために大量の JavaScript が必要でした。
そこで私は最終的にハイブリッドを作成することになりました。 これは動的に生成された SVG で、
CSS カスタム プロパティとして保存され、親の
JavaScript
lineNumbers(element, numLines = 50, inline = false)
要素は
次に、カスタム プロパティのプレフィックスを定義します。const prefix = '--linenum-';
if (!inline) { const styleString = document.body.getAttribute('style') || ''; const regex = new RegExp(`${prefix}[^:]*`, 'g'); const match = styleString.match(regex); if (match) { element.style.backgroundImage = `var(${match[0]})`; return; } }
次に、要素からスタイルを
抽出
const bgColor = getComputedStyle(element).borderColor; const fillColor = getComputedStyle(element).color; const fontFamily = getComputedStyle(element).fontFamily; const fontSize = parseFloat(getComputedStyle(element).fontSize); const lineHeight = parseFloat(getComputedStyle(element).lineHeight) / fontSize; const paddingTop = parseFloat(getComputedStyle(element).paddingTop) / 2; const translateY = (fontSize * lineHeight).toFixed(2);
const id = `${prefix}${Math.random().toString(36).substr(2, 6)}`;
const svg = `<svg xmlns="http://www.w3.org/2000/svg"> <style> svg { background: ${bgColor}; } text { fill: hsl(from ${fillColor} h s l / 50%); font-family: ${fontFamily}; font-size: ${fontSize}px; line-height: ${lineHeight}; text-anchor: end; translate: 0 calc((var(--n) * ${translateY}px) + ${paddingTop}px); } </style> ${Array.from({ length: numLines }, (_, i) => `<text x="90%" style="--n:${i + 1};">${i + 1}</text>`).join("")} </svg>`;
詳しく見てみましょう: