如何在drupal 8中插入自定义Javascripts

时间:2016-10-27 18:53:37

标签: javascript jquery html css drupal-8

我是Drupal的新手。我在html到drupal主题之后将Psd转换为html模板。转换后所有的css文件都正常工作,但javascript文件无法正常工作。例如,用于导航栏修复的javasccript代码就像这样

Public Class Form1
    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click

        IO.File.SetAttributes("c:\stock", IO.FileAttributes.Hidden)

    End Sub
End Class

此代码正在使用普通模板,但不在drupal主题中。这是libraries.ylm文件

(window).scroll(function(){
  var sticky = $('.menubar'),
      scroll = $(window).scrollTop();

  if (scroll >= 586) sticky.addClass('fixed');
  else sticky.removeClass('fixed');
});

customscript.js拥有所有自定义的javascript代码。请帮帮我。

0 个答案:

没有答案