好滚动到wordpress

时间:2014-01-01 14:52:46

标签: javascript php jquery html wordpress

我正在将html5转换为wordpress主题。 我想使用自定义滚动wordpress。 代码<script src="jquery.nicescroll.js"></script>

DEPENDENCIES 它是jquery框架的插件,你需要在脚本中包含jquery。

我会用

"<?php wp_enqueue_script( $handle, $src, $deps, $ver, $in_footer ); ?>"

它是否会起作用 下面的代码怎么样?

$(document).ready(
  function() {
    $("html").niceScroll();
  }
);

实施例 1.简单模式,它样式文档滚动条(首选html元素):

在哪里输入以使其有效?

排队后,我是否需要再次添加header.php 解释会有所帮助。

1 个答案:

答案 0 :(得分:0)

嗨,如果你能够导航wordpress主题文件,你可以轻松添加漂亮的滚动文件&#34; jquery.nicescroll.js&#34;进入其他js文件优先的主题,然后在functions.php文件中注册并入队

wp_register_script('nice-js',get_template_directory_uri() . '/assets/js/jquery.nicescroll.js',array('jquery'),'1.0.0',true );
wp_enqueue_script('nice-js');

最后将其添加到主js主文件中 像这样`

$ = jQuery.noConflict();
$(document).ready(function(){

  //nicescroll
  $(function() {
   $("html").niceScroll();
   });
});

`