Guest User

Untitled

a guest
Mar 17th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. <script>
  2. navHeight = $('#main_navigation').height();
  3. //ナビ部分の高さ計測用
  4.  
  5. $(window).on('load', function() {
  6. var url = $(location).attr('href');
  7. setTimeout(function(){
  8. if(url.indexOf("?id=") != -1){
  9. var id = url.split("?id=");
  10. var $target = $('#' + id[id.length - 1]);
  11. if($target.length){
  12. var pos = $target.offset().top;
  13. var target_top = pos - navHeight;//ここでナビの高さを引く
  14. $("html, body").animate({scrollTop:target_top}, 1500);
  15. }
  16. }
  17. },100);
  18. });
  19. </script>
Add Comment
Please, Sign In to add comment