p5实现反射变形动画效果代码

代码语言:html

所属分类:动画

代码描述:p5实现反射变形动画效果代码

代码标签: p5 反射 变形 动画

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

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">






    <style>
        body {
          margin: 0;
          padding: 0;
          height: 100vh;
          overflow: hidden;
          display: flex;
          align-items: center;
          justify-content: center;
          background: black;
        }
    </style>



</head>

<body>

    <script type="text/javascript" src="//repo.bfw.wiki/bfwrepo/js/p5.1.4.0.js"></script>
    <script>
        //wccchallenge - reflection
        //reflection for reflection - comments for your reflection
        //click to mix
        let n=9;
        function setup(){
          c=min(windowWidth,windowHeight)*0.8;//what is our size in this universe - what space/dimension do you occupy
          
          createCanvas(c,c);//what shall you paint on the canvas of this day?
          y=-c;//what are the variables within you and of you?
          background(255);//this background is the childhood of this canvas - what is the background on which you paint?
            noFill.........完整代码请登录后点击上方下载按钮下载查看

网友评论0