Skip to content

Instantly share code, notes, and snippets.

@gen-yamada
Created December 11, 2020 03:12
Show Gist options
  • Save gen-yamada/d9346cf08003ac38780bb8bee68ab4ac to your computer and use it in GitHub Desktop.
Save gen-yamada/d9346cf08003ac38780bb8bee68ab4ac to your computer and use it in GitHub Desktop.
scroll-toggle-header vue.js nuxt.js
<template>
<header class="header">
header
</header>
</template>
<script>
if (process.browser) {
var lastST = $(window).scrollTop(); //初期スクロール位置の取得
function hideGlobalNav(e) {
var scrollTop = $(window).scrollTop(); //スクロール位置の取得
var threshold = 100; //許容するスクロール量
if (lastST > scrollTop) {
if ($(".header").hasClass("hide")) $(".header").removeClass("hide"); //クラスの削除
} else if (scrollTop > threshold) {
if (!$(".header").hasClass("hide")) $(".header").addClass("hide"); //クラスの取得
}
lastST = scrollTop;
var hidePoint = 100;
if (scrollTop > hidePoint) {
$(".header").addClass('is-scroll');
} else {
$(".header").removeClass('is-scroll');
}
}
$(window).on("scroll", hideGlobalNav); //スクロール時に関数を実行
}
</script>
<style lang="scss" scoped>
.hide {
transform: translate3d(0px, -100%, 0px) !important
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment