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

MediaWiki:Common.js:修订间差异

MediaWiki界面页面
无编辑摘要
无编辑摘要
 
(未显示同一用户的5个中间版本)
第11行: 第11行:
$(document).ready(function(){
$(document).ready(function(){
   $("#infobox-toggleTitle").click(function(){
   $("#infobox-toggleTitle").click(function(){
     $("#infobox-content").toggle(200);
     $("#infobox-content").toggle(100);
    if ($("#infobox-arrow").hasClass('infobox-rotate')) {
    $("#infobox-arrow").removeClass('infobox-rotate');
  } else {
    $("#infobox-arrow").addClass('infobox-rotate');
  }
   });
   });
});
});


console.log(123);
/*用于帧数条横向滚动*/
const inner = document.querySelector('.frameChart-back');
 
inner.addEventListener('wheel', event => {
  const { scrollLeft, scrollWidth, clientWidth } = inner;
  const { deltaY } = event;
  const maxScrollLeft = scrollWidth - clientWidth;
  const left = inner.scrollLeft + event.deltaY;
  if ((deltaY < 0 && left >= 0) || (deltaY > 0 && left <= maxScrollLeft)) {
    event.preventDefault();
  }
  // event.preventDefault();
  inner.scrollLeft = left;
});

2024年12月24日 (二) 15:00的最新版本

/* 这里的任何JavaScript将为所有用户在每次页面加载时加载。 */
/* 用于信息栏折叠面板 */
/*window.onload = function () {
  var infoboxtitle = document.getElementById('infobox-toggleTitle');
  var infoboxcontent = document.getElementById('infobox-content');
  infoboxtitle.addEventListener('click', function() {
    (infoboxcontent.style.display === 'table') ? 'none' : 'table';
  });
};*/

$(document).ready(function(){
  $("#infobox-toggleTitle").click(function(){
    $("#infobox-content").toggle(100);
    if ($("#infobox-arrow").hasClass('infobox-rotate')) {
    $("#infobox-arrow").removeClass('infobox-rotate');
  } else {
    $("#infobox-arrow").addClass('infobox-rotate');
  }
  });
});

/*用于帧数条横向滚动*/
const inner = document.querySelector('.frameChart-back');

inner.addEventListener('wheel', event => {
  const { scrollLeft, scrollWidth, clientWidth } = inner;
  const { deltaY } = event;
  const maxScrollLeft = scrollWidth - clientWidth;
  const left = inner.scrollLeft + event.deltaY;
  if ((deltaY < 0 && left >= 0) || (deltaY > 0 && left <= maxScrollLeft)) {
    event.preventDefault();
  }
  // event.preventDefault();
  inner.scrollLeft = left;
});