点击摇摆摇晃效果
代码语言: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', 'c5ceae', 'f0e2a4', 'f4ebc3'], ['acdeb2', 'e1eab5', 'edad9e', 'fe4b74', '390d2d'], ['b9d7d9', '668284', '2a2829', '493736', '7b3b3b'], ['bbbb88', 'ccc68d', 'eedd99', 'eec290', 'eeaa88'], ['cff09e', 'a8dba8', '79bd9a', '3b8686', '0b486b'], ['d1f2a5', 'effab4', 'ffc48c', 'ff9f80', 'f56991'], ['d3e2b6', 'c3dbb4', 'aaccb1', '87bdb1', '68b3af'], ['e0ffb3', '61c791', '31797d', '2a2f36', 'f23c55'], ['e25858', 'e9d6af', 'ffffdd', 'c0efd2', '384252'], ['e8608c', '71cbc4', 'fff9f4', 'cdd56e', 'ffbd68'], ['e8ddcb', 'cdb380', '036564', '033649', '031634'], ['e94e77', 'd68189', 'c6a49a', 'c6e5d9', 'f4ead5'], ['eee6ab', 'c5bc8e', '696758', '45484b', '36393b'], ['efffcd', 'dce9be', '555152', '2e2633', '99173c'], ['f04155', 'ff823a', 'f2f26f', 'fff7bd', '95cfb7'], ['f8b195', 'f67280', 'c06c84', '6c5b7b', '355c7d'], ['f8f4d7', 'f4dec2', 'f2b4a8', 'e98977.........完整代码请登录后点击上方下载按钮下载查看
网友评论0