ノベルゲームとしての Web フロントエンド | su8ru
やってみる
const target = document.getElementsByClassName('chara-name')[0];
const observer = new MutationObserver((mutations) => {
mutations.map((mutation) => {
const { type, target } = mutation;
if (type === 'childList') {
// target.innerText が変わってるかもしれない!
// → 背景画像の表示切り替え処理(省略)
}
});
});
observer.observe(target, {
childList: true, // ← これ忘れずに!
});