canvas随机五彩缤纷动画屏保代码

代码语言:html

所属分类:动画

代码描述:canvas随机五彩缤纷动画屏保代码

代码标签: canvas 随机 五彩 缤纷 动画 屏保 代码

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

<!DOCTYPE html>
<html lang="en" >

<head>
  <meta charset="UTF-8">
  


  
  
</head>

<body translate="no">
  
  
      <script >
"use strict"; // Paul Slaymaker, paul25882@gmail.com
const body = document.getElementsByTagName("body").item(0);
body.style.background = "#000";
const TP = 2 * Math.PI;
const CSIZE = 400;

const ctx = (() => {
  let d = document.createElement("div");
  d.style.textAlign = "center";
  body.append(d);
  let c = document.createElement("canvas");
  c.width = c.height = 2 * CSIZE;
  d.append(c);
  return c.getContext("2d");
})();
ctx.translate(CSIZE, CSIZE);

onresize = () => {
  let D = Math.min(window.innerWidth, window.innerHeight) - 40;
  ctx.canvas.style.width = ctx.canvas.style.height = D + "px";
};

const getRandomInt = (min, max, low) => {
  if (low) return Math.floor(Math.random() * Math.random() * (max - min)) + min;else
  return Math.floor(Math.random() * (max - min)) + min;
};

function Color() {
  const CBASE = 160;
  const CT = 255 - CBASE;
  this.getRGB = () => {
    let red = Math.round(CBASE + CT * (this.fr * Math.cos(this.RK2 + t / this.RK1) + (1 - this.fr) * Math.cos(t / this.RK3)));
    let grn = Math.round(CBASE + CT * (this.fg * Math.cos(this.GK2 + t / this.GK1) + (1 - this.fg) * Math.cos(t / this.GK3)));
    let blu = Math.round(CBASE + CT * (this.fb * Math.cos(this.BK2 + t / this.BK1) + (1 - this.fb) * Math.cos(t / this.BK3)));
    return "rgb(" + red + "," + grn + "," + blu + ")";
  };
  this.randomizeF = () => {
    this.RK3 = 1 + 5 * Math.random();
    this.GK3 = 1 + 5 * Math.random();
    this.BK3 = 1 + 5 * Math.random();
    this.fr = 1 - Math.pow(0.9 * Math.random(), 3);
    this.fg = 1 - Math.pow(0.9 * Math.random(), 3);
    this.fb = 1 - Math.pow(0.9 * Math.random(), 3);
  };
  this.randomize = () => {
    this.RK1 = 40 + 40 * Math.random();
    this.GK1 = 40 + 40 * Math.random();
    this.BK1 = 40 + 40 * Math.random();
    this.RK2 = TP * Math.random();
    this.GK2 = TP * Math.random();
    this.BK2 = TP * Math.random();
    this.randomizeF();
  };
  this.randomize();
}

var color = new Color();

var stopped = true;
var start = () => {
  if (stopped) {
    stopped = false;
    requestAnimationFrame(animate);
  } else {
    stopped = true;
  }
};
body.addEventListener("click", start, false);

var t = 0;
var animate = ts => {
  if (stopped) return;
  t++;
  draw();
  requestAnimationFrame(animate);
};

const getHexPath = spath => {
  const dm1 = new DOMMatrix([0.5, 0.866, -0.866, 0.50, 0, 0]);
  const dm2 = new DOMMatrix([-0.5, 0.866, -0.866, -0.50, 0, 0]);
  const dmy = new DOMMatrix([1, 0, 0, -1, 0, 0]);
  const .........完整代码请登录后点击上方下载按钮下载查看

网友评论0