お問い合わせフォーム
Contact
お問い合わせ
Contact
お見積り、プラン提案、ご相談、現地調査依頼を無料で承ります!
お電話、またはメールフォームよりお気軽にお問い合わせください。
$(function() {
var $win = $(window),
$header = $('header'),
headerHeight = $header.outerHeight(),
startPos = 0;
$win.on('load scroll', function() {
var value = $(this).scrollTop();
if ( value > startPos && value > headerHeight ) {
$header.css('top', '-' + headerHeight + 'px');
} else {
$header.css('top', '0');
}
startPos = value;
});
});
$(document).ready(function() {
$(".drawer").drawer();
});