Warning: Undefined array key "seo" in /home/dotequal/pub/ja-ja.jp/wp-content/themes/ja-ja/header-single.php on line 6

Warning: Trying to access array offset on value of type null in /home/dotequal/pub/ja-ja.jp/wp-content/themes/ja-ja/header-single.php on line 6

Warning: Undefined array key "css" in /home/dotequal/pub/ja-ja.jp/wp-content/themes/ja-ja/header-single.php on line 7

Warning: Trying to access array offset on value of type null in /home/dotequal/pub/ja-ja.jp/wp-content/themes/ja-ja/header-single.php on line 7

Warning: Undefined array key "jssrc" in /home/dotequal/pub/ja-ja.jp/wp-content/themes/ja-ja/header-single.php on line 8

Warning: Trying to access array offset on value of type null in /home/dotequal/pub/ja-ja.jp/wp-content/themes/ja-ja/header-single.php on line 8

Warning: Undefined array key "js" in /home/dotequal/pub/ja-ja.jp/wp-content/themes/ja-ja/header-single.php on line 9

Warning: Trying to access array offset on value of type null in /home/dotequal/pub/ja-ja.jp/wp-content/themes/ja-ja/header-single.php on line 9

Warning: Undefined variable $tn_js in /home/dotequal/pub/ja-ja.jp/wp-content/themes/ja-ja/header-single.php on line 59
ページの先頭へ戻るボタン(jQuery) – どっといこ
WordPress  
  ページの先頭へ戻るボタン(jQuery)
2018
14
Mar

ページの先頭へ戻るボタン(jQuery)

最終更新日: 2020年8月11日


//適当なjsファイルに以下を記入する

$(function() {
	var up = $( '#pageTop' );
	up.hide();
	$(window).scroll(function() {
		if ( $(this).scrollTop() > 200 ) { //数字の200はスクロールした距離
			up.fadeIn();
		}else{
			up.fadeOut();
		}
	});
	up.click(function() {
		$('body,html').animate( { scrollTop: 0 }, 500 ); //数字の500は画面トップに戻るためにかかる時間
		return false;
	});
});

適当な位置に下記を設置する


<div id="pageTop"><a href="#">top</a></div>

デザインは適当に作ってください。当サイトの場合は画面右下に赤丸で囲まれたtopという文字が表れます。

 

top


Warning: Undefined array key "jssrc" in /home/dotequal/pub/ja-ja.jp/wp-content/themes/ja-ja/footer-single.php on line 30

Warning: Trying to access array offset on value of type null in /home/dotequal/pub/ja-ja.jp/wp-content/themes/ja-ja/footer-single.php on line 30

Warning: Undefined array key "js" in /home/dotequal/pub/ja-ja.jp/wp-content/themes/ja-ja/footer-single.php on line 31

Warning: Trying to access array offset on value of type null in /home/dotequal/pub/ja-ja.jp/wp-content/themes/ja-ja/footer-single.php on line 31