gpt4 book ai didi

javascript - 使用 JDenticon 生成 Identicon

转载 作者:行者123 更新时间:2023-11-30 15:58:06 25 4
gpt4 key购买 nike

我尝试使用 JDenticon API(参见 JDenticon API )使用 Javascript 生成一个标识并在基本的 HTML 站点上显示图片。之后我想使用 Java 获取图像。但现在我只想将图像显示在 HTML 文档中。

这是我的test.html

的代码
<!DOCTYPE HTML>

<html>
<head>
<title>Test</title>
</head>
<body>
<script src="//cdn.jsdelivr.net/jdenticon/1.3.2/jdenticon.min.js" async></script>

<canvas width="200" height="200" data-jdenticon-hash="ff8adece0631821959f443c9d956fc39">
Fallback text for browsers not supporting canvas</canvas>

<svg width="200" height="200" data-jdenticon-hash="ff8adece0631821959f443c9d956fc39">
Fallback text for browsers not supporting inline svg</svg>

</body>
</html>

但是在Firefox中查看test.html时没有图片,这是为什么?我觉得我错过了一些非常重要的东西,但我无法弄清楚它是什么。

最佳答案

你错过了 https:

<!DOCTYPE HTML>

<html>
<head>
<title>Test</title>
</head>
<body>
<script src="https://cdn.jsdelivr.net/jdenticon/1.3.2/jdenticon.min.js" async></script>

<canvas width="200" height="200" data-jdenticon-hash="ff8adece0631821959f443c9d956fc39">
Fallback text for browsers not supporting canvas</canvas>

<svg width="200" height="200" data-jdenticon-hash="ff8adece0631821959f443c9d956fc39">
Fallback text for browsers not supporting inline svg</svg>

</body>
</html>

关于javascript - 使用 JDenticon 生成 Identicon,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38184109/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com