错误:托管后未定义 Atropos 错误

Error: Atropos is not defined error after hosted

提问人:Dinesh kumar 提问时间:11/6/2023 更新时间:11/6/2023 访问量:17

问:

我正在使用 Atropos js 库。它在当地工作得很好。但是当我在 github 托管后尝试在远程打开时。它不起作用。我已经使用 npm 安装了 Atropos。

这是我的代码:

<html>
<head>
   <link rel="stylesheet" href="node_modules/atropos/atropos.min.css"/>
<head>
<body>

   //my code goes here 
   
   <script src="node_modules/atropos/atropos.min.js"></script>
    <script>
      const myAtropos = Atropos({
        el: ".my-atropos",
        highlight: false,
        shadow: true,
        alwaysActive: true,
        shadowScale: 1,
        shadowOffset:20
      });
    </script>
</body>
</hmtl>

错误:未定义 Atropos。

git github 本地 git-remote 定义

评论

0赞 opike 11/6/2023
我认为这一行在托管实例中不起作用: <script src=“node_modules/atropos/atropos.min.js”></script> 也许尝试将该链接替换为指向 CDN 的链接,至少作为测试: jsdelivr.com/package/npm/atropos

答: 暂无答案