webgl实现宇宙黑洞鼠标跟随交互动画效果代码
代码语言:html
所属分类:动画
代码描述:webgl实现宇宙黑洞鼠标跟随交互动画效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
html, body {
position: absolute;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
padding: 0px;
cursor: none;
margin: 0px;
overflow: hidden;
display: flex;
height: 100%;
width: 100%;
background-color: #000;
}
canvas {
margin: auto auto;
}
</style>
</head>
<body>
<script id="2d-fragment-shader" type="x-shader/x-fragment">// <















网友评论0