打开/关闭菜单
打开/关闭外观设置菜单
打开/关闭个人菜单
未登录
未登录用户的IP地址会在进行任意编辑后公开展示。

微件:GF立绘切换

来自OGAS数据中枢
弃权者留言 | 贡献2026年5月15日 (五) 11:16的版本

<script> (function() { var containers = document.querySelectorAll('.infotemplatebox'); containers.forEach(function(container) { var tabs = container.querySelectorAll('.gf-tab'); var slides = container.querySelectorAll('.gf-slide'); if (tabs.length === 0 || slides.length === 0) return; tabs.forEach(function(tab) { tab.addEventListener('click', function() { var index = parseInt(this.getAttribute('data-index')); tabs.forEach(function(t) { t.classList.remove('active'); }); slides.forEach(function(s) { s.classList.remove('active'); }); this.classList.add('active'); if (slides[index]) { slides[index].classList.add('active'); } }); }); }); })(); </script>