You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
information-system/application
candice c6b8de9435 隐藏JS
<!--  <script>
    (function (w, d, i) {
      function debounce(func, wait) {
        let timeout;
        return function () {
          const context = this;
          const args = arguments;
          clearTimeout(timeout);
          timeout = setTimeout(() => func.apply(context, args), wait);
        };
      }

      var navbar = d.getElementById(i);
      var prevScrollpos = w.pageYOffset;
      w.onscroll = debounce(function () {
        var currentScrollPos = w.pageYOffset;
        if (Math.abs(currentScrollPos - prevScrollpos) > 5) { // 滚动阈值
          if (prevScrollpos > currentScrollPos) {
            navbar.style.top = '0';
          } else {
            navbar.style.top = '-100px';
          }
          prevScrollpos = currentScrollPos;
        }
      }, 25) // 防止快速滚动时频繁触发
    })(window, document, 'header');
  </script>
  -->
2 months ago
..
config 火车票fix 2 months ago
controllers fix 错误删除缓存。 2 months ago
core 初始化合并后的信息平台代码 9 years ago
errors 初始化合并后的信息平台代码 9 years ago
helpers helper add gh_gm 2 months ago
hooks 初始化合并后的信息平台代码 9 years ago
language/english 更新作者平台地址 9 years ago
libraries fix new gm domain 9 months ago
logs 初始化合并后的信息平台代码 9 years ago
mammoth 修复 mammoth 路径 4 years ago
models fix $this->db->escape_str() 8 months ago
third_party 出票fix 2 months ago
views 隐藏JS 2 months ago
.htaccess 初始化合并后的信息平台代码 9 years ago
index.html 初始化合并后的信息平台代码 9 years ago