Result
jQuery
$(function() { //ウィンドウサイズの高さを取得して全体の高さを加える $("body").height($(window).height() + 2000); $(window).scroll(function() { //一番上に行ったら最下部に、一番下に行ったら最上部にエフェクトなしで戻す if ($(window).scrollTop() >= ($("body").height() - $(window).height())) {$(window).scrollTop(1); } else if ($(window).scrollTop() == 0) {$(window).scrollTop($("body").height() - $(window).height() - 1); } }); });
css
body { height: 2000px; background: url("bg01.gif") ; }
Warning: include(/home/youhei0828/kachibito.net/public_html/wp-content/themes/cocoon-master/my-php/jquery-other-snippets.php): Failed to open stream: No such file or directory in /home/youhei0828/kachibito.net/public_html/wp-content/themes/kachibito7_with_cocoon_child/functions-module/shortcode/add-post-myphp.php on line 7
Warning: include(): Failed opening '/home/youhei0828/kachibito.net/public_html/wp-content/themes/cocoon-master/my-php/jquery-other-snippets.php' for inclusion (include_path='.:/opt/php-8.1.29/data/pear') in /home/youhei0828/kachibito.net/public_html/wp-content/themes/kachibito7_with_cocoon_child/functions-module/shortcode/add-post-myphp.php on line 7