Created
December 11, 2020 03:12
-
-
Save gen-yamada/d9346cf08003ac38780bb8bee68ab4ac to your computer and use it in GitHub Desktop.
scroll-toggle-header vue.js nuxt.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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