六边形酷科技特效源码

简介: 基于canvas画布绘制多个六边形跟随鼠标,科技感的几何图形酷炫动画特效,

源码介绍

基于canvas画布绘制多个六边形跟随鼠标,科技感的几何图形酷炫动画特效,

单页html源码,可以做网站动态背景,喜欢的朋友可以拿去

效果截图

liubianxing.gif

完整源码

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>canvas六角型</title>
<style>
body {
    
  background: black;
  overflow: hidden;
  /* cursor: none; */
}
</style>

</head>
<body>

<canvas id='canvas-club'></canvas>

<script>
window.requestAnimationFrame = window.requestAnimationFrame || window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame;

var c = document.getElementById("canvas-club");
var w = c.width = window.innerWidth;
var h = c.height = window.innerHeight;
var ctx = c.getContext("2d");

var maxParticles = 30;
var particles = [];
var hue = 183;

mouse = {
    };
mouse.size = 200;
mouse.x = mouse.tx = w/2;
mouse.y = mouse.ty = h/2;

var clearColor = "rgba(0, 0, 0, .2)";

function random(min, max){
    
    return Math.random() * (max - min) + min
}

function distance(x1, y1, x2, y2){
    
    return Math.sqrt( (x1-x2)*(x1-x2) + (y1-y2)*(y1-y2) );
}

function P(){
    }

P.prototype = {
    
    init: function(){
    
        this.size = this.origSize = random(10, 100);
        this.x = random(0, w);
        this.y = Math.random() > .5 ? -this.size : h + this.size;
        this.speed = this.origSpeed = random(.01, .03);
    },

    draw: function(){
    
        this.distanceFromMouse = distance(this.x, this.y, mouse.x, mouse.y);
        ctx.strokeStyle = "hsla("+hue+", 90%, 50%, 1)";
        ctx.shadowColor = "hsla("+hue+", 100%, 55%, 1)";
        ctx.shadowBlur = this.size * 2;
        ctx.beginPath();
        ctx.moveTo(this.x + this.size * Math.cos(0), this.y + this.size *  Math.sin(0));

        for(var i=0; i<6; i++){
    
            ctx.lineTo(this.x + this.size * Math.cos(i * 2 * Math.PI / 6), this.y + this.size * Math.sin(i * 2 * Math.PI / 6));
        }   

        ctx.closePath();
        ctx.lineWidth = 3;
        ctx.stroke();
        this.update();
    },

    update: function(){
    
        if(this.distanceFromMouse > 20){
    
            this.x += (mouse.x - this.x) * this.speed;
            this.y += (mouse.y - this.y) * this.speed;
            if(this.distanceFromMouse < mouse.size){
    
                this.size += (0 - this.size) * this.speed;
                this.speed += .01;
            } else {
    
                this.size += (this.origSize - this.size) * this.speed;
            }
        } else {
    
                this.init();
        }
    }
}


mouse.move = function(){
    
    if(!distance(mouse.x, mouse.y, mouse.tx, mouse.ty) <= .1){
    
      mouse.x += (mouse.tx - mouse.x) * .2;
        mouse.y += (mouse.ty - mouse.y) * .2;
    } 
};

mouse.touches = function(e) {
    
    var touches = e.touches;
    if(touches){
    
        mouse.tx = touches[0].clientX;
        mouse.ty = touches[0].clientY;
    } else {
    
        mouse.tx = e.clientX;
      mouse.ty = e.clientY;
    }
    e.preventDefault();
};

mouse.mouseleave = function(e){
    
    mouse.tx = w/2;
    mouse.ty = h/2;
};

window.addEventListener("mousemove", mouse.touches);
window.addEventListener("touchstart", mouse.touches);
window.addEventListener("touchmove", mouse.touches)

c.addEventListener("mouseleave", mouse.mouseleave)

window.addEventListener("resize", function(){
    
    w = c.width = window.innerWidth;
    h = c.height = window.innerHeight;
});

for(var i=1; i<=maxParticles; i++) {
    
    setTimeout(function(){
    
        var p = new P();
        p.init();
        particles.push(p);
    }, i * 50);
}



function anim(){
    
    ctx.fillStyle = clearColor;
    ctx.shadowColor = clearColor;
    ctx.shadowBlur = 0;
    ctx.globalCompositeOperation = "source-over";
    ctx.fillRect(0,0,w, h);
    mouse.move();

    for(var i in particles){
    
        var p = particles[i];
        p.draw();
    }
    hue++;
    requestAnimationFrame(anim);
}

anim();

</script>
<script>
var _hmt = _hmt || [];
(function() {
    
  var hm = document.createElement("script");
  hm.src = "https://hm.baidu.com/hm.js?c8249987b56687e1763167bfea967a61";
  var s = document.getElementsByTagName("script")[0]; 
  s.parentNode.insertBefore(hm, s);
})();
</script>
<!--QQ沐编程 www.qqmu.com 学习群:290987565 -->
</body>
</html>
相关文章
|
3月前
|
移动开发 JavaScript 前端开发
💻揭秘!如何用 Vue 3 实现酷炫的色彩魔方游戏✨
本文分享了开发基于Canvas技术的小游戏"色彩魔方挑战"的完整过程。游戏旨在考验玩家的观察力和耐心,通过随机生成的颜色矩阵和一个变化点,玩家需在两幅画布中找出不同的颜色点。文章详细讲解了游戏的核心功能,包括随机颜色矩阵生成、点的闪烁提示、自定义配色方案等。此外,作者展示了使用Vue 3和TypeScript开发的代码实现,带领读者一步步深入了解游戏的逻辑与细节。
151 69
|
5月前
|
前端开发
HTML+CSS动画实现动感3D卡片墙:现代Web设计的视觉盛宴
HTML+CSS动画实现动感3D卡片墙:现代Web设计的视觉盛宴
|
5月前
|
前端开发
视觉充电:CSS动画特效,为网站带来动力与活力!(一键复制)
视觉充电:CSS动画特效,为网站带来动力与活力!(一键复制)
|
5月前
|
前端开发
类抖音logo的光影之旅:CSS动画效果,让标志更具吸引力!
类抖音logo的光影之旅:CSS动画效果,让标志更具吸引力!
|
8月前
|
JavaScript
【UI】 欢快畅游的小鱼特效
【UI】 欢快畅游的小鱼特效
57 1
|
程序员
技术文章精美配图模板网站推荐-创客贴
技术文章精美配图模板网站推荐-创客贴
60 0
|
编解码 算法 前端开发
《移动端的真实感渲染-慎思》演讲视频 + 文字版
《移动端的真实感渲染-慎思》演讲视频 + 文字版
173 0
|
计算机视觉
UWP 手绘视频创作工具技术分享系列 - 手绘视频与视频的结合
原文:UWP 手绘视频创作工具技术分享系列 - 手绘视频与视频的结合 本篇作为技术分享系列的第三篇,详细讲一下手绘视频中结合视频的处理方式。 随着近几年短视频和直播行业的兴起,视频成为了人们表达情绪和交流的一种重要方式,人们对于视频的创作、编辑和分享有了更多的需求。
1532 3

热门文章

最新文章