HTML5圆形气泡背景动画特效是一款基于HTML5 Canvas实现的气泡背景动画,之前多次有好友问道,所以这里就直接分享一下。不多说废话,直接上代码:
HTML代码:
<div id="large-header" class="large-header">
<canvas id="ani-canvas"></canvas>
</div>
JS代码:
(function() {
var width, height, largeHeader, canvas, ctx, circles, target, animateHeader = true;
// Main
initHeader();
addListeners();
function initHeader() {
width = window.innerWidth;
height = window.innerHeight;
target = {x: 0, y: height};
largeHeader = document.getElementById('large-header');
largeHeader.style.height = height+'px';
canvas = document.getElementById('ani-canvas');
canvas.width = width;
canvas.height = height;
ctx = canvas.getContext('2d');
// create particles
circles = [];
for(var x = 0; x < width*0.5; x++) {
var c = new Circle();
circles.push(c);
}
animate();
}
// Event handling
function addListeners() {
window.addEventListener('scroll', scrollCheck);
window.addEventListener('resize', resize);
}
function scrollCheck() {
if(document.body.scrollTop > height) animateHeader = false;
else animateHeader = true;
}
function resize() {
width = window.innerWidth;
height = window.innerHeight;
largeHeader.style.height = height+'px';
canvas.width = width;
canvas.height = height;
}
function animate() {
if(animateHeader) {
ctx.clearRect(0,0,width,height);
for(var i in circles) {
circles[i].draw();
}
}
requestAnimationFrame(animate);
}
// Canvas manipulation
function Circle() {
var _this = this;
// constructor
(function() {
_this.pos = {};
init();
console.log(_this);
})();
function init() {
_this.pos.x = Math.random()*width;
_this.pos.y = height+Math.random()*100;
_this.alpha = 0.1+Math.random()*0.3;
_this.scale = 0.1+Math.random()*0.3;
_this.velocity = Math.random();
}
this.draw = function() {
if(_this.alpha <= 0) {
init();
}
_this.pos.y -= _this.velocity;
_this.alpha -= 0.0005;
ctx.beginPath();
ctx.arc(_this.pos.x, _this.pos.y, _this.scale*10, 0, 2 * Math.PI, false);
ctx.fillStyle = 'rgba(255,255,255,'+ _this.alpha+')';
ctx.fill();
};
}
})();
演示及下载地址:
[demo]http://demo.skillcat.cn/html-html5/H5-animated-bubble/index.html[/demo] [download]http://demo.skillcat.cn/html-html5/H5-animated-bubble/H5-animated-bubble.zip[/download]
Comments | 13 条评论
明月清风 博主
这个东西的确是好看的哟
天津网站建设 博主
博主客气了,不用谢。
天津网站建设 博主
h5的界面就是好,博主的文章不错
宅小猫 博主
@天津网站建设
哈哈,谢谢!
晴和君 博主
网页取消焦点后会显示offset,0是不是bug呀?
宅小猫 博主
@晴和君
大神,这个我就没你懂得多了,我还真没发现这个问题,不报错应该问题不大吧?
晴和君 博主
@宅小猫
我今天也没重现出来。。。估计和变量有关。能用就行啦~去他的什么w3c
憧憬点滴记忆 博主
好看
宅小猫 博主
@憧憬点滴记忆
哈哈,喜欢拿去,别客气…
福利堆 博主
看着代码都发困
宅小猫 博主
@福利堆
哈哈,要搞这么一个效果着实不容易,搞不好都有催眠效果 …
时之繁花 博主
哇~这个好看,小猫出去玩啦,注意防晒哦
宅小猫 博主
@时之繁花
会的,多谢建议哦~ 你在哪,可以去找你玩哦~