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.
<!--
<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.transform = 'translateY(0)';
} else {
navbar.style.transform = 'translateY(-150px)';
}
prevScrollpos = currentScrollPos;
}
}, 25) // 防止快速滚动时频繁触发
})(window, document, 'pc_nav');
</script>
-->
|
3 weeks ago | |
|---|---|---|
| .. | ||
| analytics | ||
| bootstrap | 4 months ago | |
| bootstrap3 | 1 month ago | |
| cache | 4 months ago | |
| data_import | ||
| keyworlds | ||
| mobile_first | 3 weeks ago | |
| order | ||
| product_urls | ||
| statistics | ||
| tools | ||
| trippest | ||
| amp_editor.php | ||
| announc.php | ||
| city.php | ||
| country.php | ||
| footer.php | ||
| header.php | ||
| index.html | ||
| info_image_review.php | ||
| information.php | ||
| information_backup_content.php | ||
| information_edit.php | ||
| information_select_product.php | ||
| link_add.php | ||
| login.php | ||
| message.php | ||
| nav.php | ||
| none_urls.php | ||
| opater.php | ||
| province.php | ||
| seo.php | ||
| seo_select_url.php | ||
| setting.php | ||
| simple_header.php | ||
| test.php | ||
| welcome-new.php | ||
| welcome.php | ||
| welcome_message.php | ||