动画锚链接 - Wordpress

时间:2015-08-24 01:37:21

标签: php jquery html css wordpress

我在Wordpress网站上设置了一个锚点链接,该链接从导航链接到页脚。

enter image description here

HTML - footer.php

<footer id="footer-anchor">

  <div class="row"> 

    ...

选择链接时,页面“跳转”到页脚。我想让它动画到页脚。类似于使用“返回顶部”按钮动画到顶部的页面,但反过来。

2 个答案:

答案 0 :(得分:0)

Page-Scroll-To-ID plugin怎么样?它在我的WordPress网站上运行正常。我们可以在几分钟内轻松地在管理页面上进行设置,我们就完成了。这个插件是你正在寻找的。请检查此链接Page-Scroll-To-ID plugin tutorial

更新:如果您不想使用插件,请按以下步骤操作。我们将使用纯粹的jQuery插件,令人惊讶的是,代码就像一个魅力,看起来很简单!

<强> 1。准备WordPress主题

将您的菜单包裹在某个类中,我们将在稍后使用此类。例如:

<nav id='scrollNav'>
   <?php wp_nav_menu(array('theme_location'  => 'your-menu-location', 'container'=>false, 'depth'=>1) ?>
</nav>

然后将ID添加到您的特定元素,但您已将{id}添加到footer元素#footer-anchor

<强> 2。编写您的javascript,我们将只使用jQuery

(function($){
   $("#scrollNav").find("a").click(function(){
       var $targetElm = $($(this).attr("href"));
       $('html,body').animate({scrollTop: $targetElm.offset().top},
    'slow');
   });
})(jQuery)

第3。将您的脚本排入队列(以WordPress的方式包含您的脚本)

function your_scripts_method() {
    wp_enqueue_script(
        'your-script',
        get_stylesheet_directory_uri() . '/js/your_script.js',
        array( 'jquery' )
    );
}

add_action( 'wp_enqueue_scripts', 'your_scripts_method' );

<强> 4。再次运行您的网站

祝贺!!!

答案 1 :(得分:0)

我喜欢使用Karl Swedberg中的此代码,我通常在<script></script>标记之前的 footer.php 文件中使用</body>包含它您可以将其排入 functions.php 文件并将其加载到页脚中。我喜欢这段代码,因为它会在您点击锚点后从URL中删除#hash。

jQuery(document).ready(function($){
    // From: http://www.learningjquery.com/2007/10/improved-animated-scrolling-script-for-same-page-links/
    function filterPath(string) {
      return string
        .replace(/^\//,'')
        .replace(/(index|default).[a-zA-Z]{3,4}$/,'')
        .replace(/\/$/,'');
      }
      var locationPath = filterPath(location.pathname);
      var scrollElem = scrollableElement('html', 'body');
     
      $('a[href*=#]').each(function() {
        var thisPath = filterPath(this.pathname) || locationPath;
        if (  locationPath == thisPath
        && (location.hostname == this.hostname || !this.hostname)
        && this.hash.replace(/#/,'') ) {
          var $target = $(this.hash), target = this.hash;
          // Added line below from previous version
          target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
          if (target) {
            var targetOffset = $target.offset().top;
            $(this).click(function(event) {
              event.preventDefault();
        $(scrollElem).animate({
            scrollTop: targetOffset
        }, 400);
          return false;
            });
          }
        }
      });
     
      // use the first element that is "scrollable"
      function scrollableElement(els) {
        for (var i = 0, argLength = arguments.length; i <argLength; i++) {
          var el = arguments[i],
              $scrollElement = $(el);
          if ($scrollElement.scrollTop()> 0) {
            return el;
          } else {
            $scrollElement.scrollTop(1);
            var isScrollable = $scrollElement.scrollTop()> 0;
            $scrollElement.scrollTop(0);
            if (isScrollable) {
              return el;
            }
          }
        }
        return [];
      }
});

您可以通过更改代码的这一部分中的数字来控制滚动的速度:

$(scrollElem).animate({
    scrollTop: targetOffset
}, 400);