加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.html 1.09 KB
一键复制 编辑 原始数据 按行查看 历史
郭明 提交于 2022-02-17 19:43 . 郭明提交代码
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>摘星团-掘金浏览器插件</title>
<script crossorigin="anonymous" integrity="sha384-EGVQdWRqC20gAE+OsXRRYRuVVu+XaGzz6pJQNvD9yh3J73bmBl45ucwb37yOp9xN" src="https://lib.baomitu.com/three.js/63/three.js"></script>
<script crossorigin="anonymous" integrity="sha512-LDLGJ6FCTB3cSU6TwQhQHT4n1Sje3K1fXCesgME845YTEKNGfQaEnPcLNIqNJ6E3ua65VCL9CVVBdr9G+E7cnw==" src="https://lib.baomitu.com/pixi.js/6.2.2/browser/pixi.js"></script>
<script crossorigin="anonymous" integrity="sha384-aLVXf1JQal9NaRqd8dmMI3pnJjkqUkg+8M6VyWU1zVwXMWa/xebW4gKf1RHvzV5s" src="https://lib.baomitu.com/anima/0.4.0/anima.js"></script>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
<script type="text/javascript">
let type = "WebGL"
if(!PIXI.utils.isWebGLSupported()){
type = "canvas"
}
PIXI.utils.sayHello(type)
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化