사용자:Bd3076/대규모 실험실/1/plugin
< 사용자:Bd3076 | 대규모 실험실 | 1
이 플러그인에 대한 설명문서는 사용자:Bd3076/대규모 실험실/1/plugin/설명문서에서 만들 수 있습니다.
// 이부분에 코드 입력 // function makeTransparentChangeValue(id, value){ if(value < 0){ document.getElementById(id).style.display = "none"; } else{ document.getElementById(id).style.opacity = value/100; setTimeout(makeTransparentChangeValue, 10, id, value-1); } } function makeTransparent(id){ makeTransparentChangeValue(id, 100); } function makeTransparentList(idList){ for(var i=0; i<idList.length; i++){ setTimeout(makeTransparent, i*1000, idList[i]); } } var myIdList = [ 'p-lang-label', 'p-lang', 't-info', 't-permalink', 't-print', 't-specialpages', 't-upload', 't-userrights', 't-emailuser', 't-log', 't-contributions', 't-recentchangeslinked', 't-whatlinkshere', 'p-tb-label', 'p-tb' ]; makeTransparentList(myIdList); // 여기까지 코드 입력 //