Fullpage.js不能在Mozilla上运行,但在Chrome上运行良好

Fullpage.js not working on Mozilla but functioning perfectly on Chrome?

本文关键字:运行 但在 Chrome js Mozilla Fullpage 不能      更新时间:2023-09-26

这里是网站:carrotcrunchpvp.comule.com。该网站是为 16 :9 制作的,但这不是重点 - 它似乎不想转到任何导航链接,你不能触摸滚动,你不能使用键盘(最重要的是......我尝试将jquery的版本更改为旧版本,但它没有解决任何问题。

当我单击一个方向时,我在控制台中弹出了这个(例如):KeyboardEvent.key值"Left"已过时,将重命名为"ArrowLeft"。如需更多帮助 https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent.key

Calctheta没有定义哪个是初始化的一部分.js http://carrotcrunchpvp.comule.com/intialisation.js

它在 Chrome 中也不起作用...在包含插件之前,您无法对其进行初始化。您在fullPage.js之前包含文件initialisation.js

这并不排除整页.js,就像任何其他插件或javascript函数一样。

初始化包含应该在末尾,紧接着任何插件在那里初始化。

<title>Catholic Professional Standards</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<link href="jquery.fullPage.css" rel="stylesheet" type="text/css">
<link href="style.css" rel="stylesheet" type="text/css">
<link href="media_queries.css" rel="stylesheet" type="text/css">
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Droid+Serif' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Montserrat:700' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet' type='text/css'>
<script src="jquery.fullPage.js" type="text/javascript"></script>
<script src="loadingscreen.js" type="text/javascript"></script>
<script src="intialisation.js" type="text/javascript"></script>
相关文章: