curtains实现冲击波动画效果代码

代码语言:html

所属分类:动画

代码描述:curtains实现冲击波动画效果代码,鼠标点击跟随波纹动画。

代码标签: curtains 冲击波 动画

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html lang="en" >
<head>
  <meta charset="UTF-8">
<style>
    body {
    /* make the body fits our viewport */
    position: relative;
    width: 100%;
    height: 100vh;
    margin: 0;
    overflow: hidden;
}

#wrap-texture{
  position: relative;
}

#canvas {
    /* make the canvas wrapper fits the document */
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.plane {
    /* define the size of your plane */
    width: 100%;
    height: 100vh;
}

.plane img {
    /* hide the img element */
    display: none;
}

</style>
</head>
<body>

 <div id="wrap-texture">
  <!-- div that will hold our WebGL canvas -->
  <div id="canvas"></div>

  <!-- div used to create our plane -->
  <div class="plane">

    <!-- images that will be used as textures by our plane -->
    <img data-sampler="texture0" id="texture0" src="//repo.bfw.wiki/bfwrepo/image/5ee9f6f685b56.png" crossorigin="anonymous" />
    <img data-sampler="ripple" id="noise" src="//repo.bfw.wiki/bfwr.........完整代码请登录后点击上方下载按钮下载查看

网友评论0