「VexFlow test content」の版間の差分
(→概要) |
編集の要約なし |
||
217行目: | 217行目: | ||
// カンマで区切られた数値の数を数えます | // カンマで区切られた数値の数を数えます | ||
var numberOfValues = (dAttribute.match(/,/g) || []).length + 1; // カンマの数 + 1 = 数値の数 | var numberOfValues = (dAttribute.match(/,/g) || []).length + 1; // カンマの数 + 1 = 数値の数 | ||
var CnumberOfValues = (dAttribute.match(/C/g) || []).length; // カンマの数 + 1 = 数値の数 | |||
// 数値の数が23であれば、このpath要素は求めるものです | // 数値の数が23であれば、このpath要素は求めるものです | ||
if (numberOfValues === | if (numberOfValues === 9) { | ||
path.setAttribute("fill", "none"); | if(CnumberOfValues === 4){ | ||
path.setAttribute("fill", "none"); | |||
path.setAttribute("stroke", "none"); | |||
} | |||
} | } | ||
}); | }); |
2024年4月6日 (土) 00:11時点における版
概要