From: Marc Foley Date: Fri, 3 Oct 2025 13:11:10 +0000 (+0100) Subject: add coords X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=HEAD;p=thirdparty%2Fgoogle%2Ffonts.git add coords --- diff --git a/.ci/vf-tag-demo2.html b/.ci/vf-tag-demo2.html index a47899625..34c0dea1d 100644 --- a/.ci/vf-tag-demo2.html +++ b/.ci/vf-tag-demo2.html @@ -36,22 +36,27 @@
+ 400
+ 0
+ 0
+ 0
+ 0

Hamburgevons

Results @@ -218,6 +223,14 @@ const CASL = document.getElementById('CASL').value; const CRSV = document.getElementById('CRSV').value; const MONO = document.getElementById('MONO').value; + + // Update coordinate value displays + document.getElementById('wght-value').textContent = wght; + document.getElementById('slnt-value').textContent = slnt; + document.getElementById('CASL-value').textContent = CASL; + document.getElementById('CRSV-value').textContent = CRSV; + document.getElementById('MONO-value').textContent = MONO; + const sliderCoords = {"wght": Number(wght), "slnt": Number(slnt), "CASL": Number(CASL), "CRSV": Number(CRSV), "MONO": Number(MONO)}; textElement.style.fontVariationSettings = `"wght" ${wght}, "slnt" ${slnt}, "CASL" ${CASL}, "CRSV" ${CRSV}, "MONO" ${MONO}`; const results = getTags(sliderCoords, tags)