点击摇摆摇晃效果

代码语言:html

所属分类:动画

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

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">

<style>
html
,
body
{
       
width: 100%;
       
height: 100%;
       
overflow: hidden;
}

body
{
       
margin: 0;
       
padding: 0;
       
color: #fff;
       
background-color: #000;
}

canvas
{
       
-webkit-tap-highlight-color: transparent;
       
tap-highlight-color: transparent;
       
-webkit-user-select: none;
       
user-select: none;
       
cursor: pointer;
}
</style>

</head>
<body translate="no">
<canvas></canvas>

<script >
// Wobble by @neave

window.requestAnimationFrame =
window.requestAnimationFrame ||
window.webkitRequestAnimationFrame ||
window.mozRequestAnimationFrame ||
window.msRequestAnimationFrame ||
function (callback) {
  setTimeout(callback, 1000 / 60);
};

Array.prototype.shuffle = function () {
  var j, temp;
  for (var i = this.length - 1; i > 0; i--) {
    j = Math.floor(Math.random() * (i + 1));
    temp = this[i];
    this[i] = this[j];
    this[j] = temp;
  }
  return this;
};

Math.clamp = function (n, min, max) {
  return Math.max(min, Math.min(n, max));
};

var get = document.querySelector.bind(document),
on = document.addEventListener.bind(document),
mouseOff = -1000,
mouseX,
mouseY,
viscosity = 25,
damping = 0.1,
totalPoints,
dist,
scale,
canvas,
context,
surfaces,
palleteNum = 0,
palleteFirst = ['0cf', '0fc', 'ff0', 'f0c', 'c0f'],
palletes = [
['000', 'ff0', 'f0f', '0ff', 'fff'],
['000', 'fff', '000', 'fff', '000'],
['333', '666', '999', 'ccc', 'fff'],
['300', '600', 'f00', '600', '300'],
['305', '606', '907', 'c08', 'f09'],
['036', '067', '098', '0c9', '0fa'],
['00a0b0', '6a4a3c', 'cc333f', 'eb6841', 'edc951'],
['264653', '2a9d8f', 'e9c46a', 'f4a261', 'e76f51'],
['300018', '5a3d31', '837b47', 'adb85f', 'e5edb8'],
['343838', '005f6b', '008c9e', '00b4cc', '00dffc'],
['3fb8af', '7fc7af', 'dad8a7', 'ff9e9d', 'ff3d7f'],
['413e4a', '73626e', 'b38184', 'f0b49e', 'f7e4be'],
['452632', '91204d', 'e4844a', 'e8bf56', 'e2f7ce'],
['594f4f', '547980', '45ada8', '9de0ad', 'e5fcc2'],
['5d4157', '838689', 'a8caba', 'cad7b2', 'ebe3aa'],
['81657e', '3ea3af', '9fd9b3', 'f0f6b9', 'ff1d44'],
['899aa1', 'bda2a2', 'fbbe9a', 'fad889', 'faf5c8'],
['99b898', 'fecea8', 'ff847c', 'e84a5f', '2a363b'],
['ab526b', 'bca297', 'c5ce.........完整代码请登录后点击上方下载按钮下载查看

网友评论0