Widget:GameSwitcher:修订间差异
来自OGAS数据中枢
更多操作
无编辑摘要 |
无编辑摘要 |
||
| 第48行: | 第48行: | ||
function moveIndicator( tab ) { | function moveIndicator( tab ) { | ||
var indicator = document.getElementById( 'gf-tab-indicator' ); | var indicator = document.getElementById( 'gf-tab-indicator' ); | ||
if ( !indicator ) { return; } | var switcher = document.getElementById( 'gf-switcher' ); | ||
if ( !indicator || !switcher ) { return; } | |||
/* 让switcher作为定位基准 */ | |||
var switcherLeft = switcher.getBoundingClientRect().left; | |||
var tabLeft = tab.getBoundingClientRect().left; | |||
indicator.style.width = tab.offsetWidth + 'px'; | indicator.style.width = tab.offsetWidth + 'px'; | ||
indicator.style.transform = 'translateX(' + | indicator.style.transform = 'translateX(' + ( tabLeft - switcherLeft ) + 'px)'; | ||
} | } | ||
2026年6月20日 (六) 23:16的版本
少女前线系列多游戏首页切换Widget。调用方式:{{#widget:GameSwitcher}}