TOP

Face Atelier

インスタグラムで情報発信中!

Face Atelier A

東儀文子(トウギアヤコ)

mail:face.atelier.yokohama@gmail.com
※メールの不着により、ご予約が完了しない方がいらっしゃいます。3日ほど経ってもご予約確認のメールが来ない場合は届いていない可能性がありますので、下記LINEからお問い合わせください。

ご予約はこちらから

The AJAX failed or the nonce verification failed. If you encounter this error repeatedly, it is possible that access is being blocked by a security-related plugin. Please try changing the values of "Select the URL for AJAX on the public page" and "Select a function to validate the value of a nonce with AJAX on the public page" in Booking Package > General Settings.

新規登録
ログアウト
プロフィールを編集
予約履歴
Subscribed items
新規登録
close
Profile
close
abc
予約履歴
close
ID 予約日時 カレンダー 状態
予約詳細
close
予約詳細
サービスを選択してください
サービスの詳細
We sent a verification code to the following address. Please enter a verification code.
$(document).ready(function() { var buttonHidden = false; // ボタンが非表示になったかどうかのフラグ $(window).on('scroll', function() { var scrollPosition = $(window).scrollTop() + $(window).height() / 2; // 現在のスクロール位置を画面中央に設定 var anchorPosition = $('#anchorReserve').offset().top; // #anchorReserveの位置 // ページの初期状態から400pxスクロールした場合 if ($(window).scrollTop() > 400 && !buttonHidden) { $('#fixed-button').fadeIn().css("display", "inline-block"); } // スクロール位置が#anchorReserveの位置に達した場合 if (scrollPosition >= anchorPosition && !buttonHidden) { $('#fixed-button').fadeOut(function() { $(this).css("display", "none"); }); buttonHidden = true; // ボタンが非表示になったのでフラグをセット } }); // #fixed-button をクリックしたときの処理 $('#fixed-button').on('click', function() { // アンカーリンクで #anchorReserve へ移動 window.location.href = "#anchorReserve"; // #fixed-button のdisplayプロパティをnoneに設定 $('#fixed-button').fadeOut(function() { $(this).css("display", "none"); }); buttonHidden = true; // ボタンが非表示になったのでフラグをセット }); });