bcirpggithubmirror/index.html

21 lines
358 B
HTML
Raw Normal View History

2020-09-12 18:49:43 +00:00
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Hello World</title>
</head>
<script src="pixi/pixi.min.js"></script>
<body>
<script type="text/javascript">
let type = "WebGL"
if (!PIXI.utils.isWebGLSupported()) {
type = "canvas"
}
PIXI.utils.sayHello(type)
</script>
</body>
</html>