html5使用canvas實(shí)現(xiàn)跟隨光標(biāo)跳動(dòng)的火焰效果
發(fā)布時(shí)間:2014-01-07 11:34:56 作者:佚名
我要評(píng)論

本示例通過Javascript使用HTML5的canvas元素在屏幕上顯示一個(gè)跳動(dòng)的火焰,火焰會(huì)跟隨光標(biāo)跳動(dòng)
本效果的完整代碼如下,把代碼保存到HTML文件中打開也能查看效果,火焰會(huì)跟隨光標(biāo):
復(fù)制代碼
代碼如下:<!DOCTYPE HTML>
<head>
<meta charset=utf-8" />
<title>HTML5 Canvas火焰效果</title>
<style type="text/css">
body{margin: 0; padding: 0;}
#canvas-keleyi-com {display: block;}
</style>
</head>
<body>
<canvas id="canvas-keleyi-com"></canvas>
<script type="text/javascript">
window.onload = function(){
var keleyi_canvas = document.getElementById("canvas-kel"+"eyi-com");
var ctx = keleyi_canvas.getContext("2d");
var W = window.innerWidth, H = window.innerHeight;
keleyi_canvas.width = W;
keleyi_canvas.height = H;</p> <p>var particles = [];
var mouse = {};</p> <p>//Lets create some particles now
var particle_count = 100;
for(var i = 0; i < particle_count; i++)
{
particles.push(new particle());
}
keleyi_canvas.addEventListener('mousemove', track_mouse, false);</p> <p>function track_mouse(e)
{
mouse.x = e.pageX;
mouse.y = e.pageY;
}</p> <p>function particle()
{
this.speed = {x: -2.5+Math.random()*5, y: -15+Math.random()*10};
//location = mouse coordinates
//Now the flame follows the mouse coordinates
if(mouse.x && mouse.y)
{
this.location = {x: mouse.x, y: mouse.y};
}
else
{
this.location = {x: W/2, y: H/2};
}
//radius range = 10-30
this.radius = 10+Math.random()*20;
//life range = 20-30
this.life = 20+Math.random()*10;
this.remaining_life = this.life;
//colors
this.r = Math.round(Math.random()*255);
this.g = Math.round(Math.random()*255);
this.b = Math.round(Math.random()*255);
}</p> <p>function draw()
{
ctx.globalCompositeOperation = "source-over";
ctx.fillStyle = "black";
ctx.fillRect(0, 0, W, H);
ctx.globalCompositeOperation = "lighter";</p> <p>for(var i = 0; i < particles.length; i++)
{
var p = particles[i];
ctx.beginPath();
p.opacity = Math.round(p.remaining_life/p.life*100)/100
var gradient = ctx.createRadialGradient(p.location.x, p.location.y, 0, p.location.x, p.location.y, p.radius);
gradient.addColorStop(0, "rgba("+p.r+", "+p.g+", "+p.b+", "+p.opacity+")");
gradient.addColorStop(0.5, "rgba("+p.r+", "+p.g+", "+p.b+", "+p.opacity+")");
gradient.addColorStop(1, "rgba("+p.r+", "+p.g+", "+p.b+", 0)");
ctx.fillStyle = gradient;
ctx.arc(p.location.x, p.location.y, p.radius, Math.PI*2, false);
ctx.fill();</p> <p>
p.remaining_life--;
p.radius--;
p.location.x += p.speed.x;
p.location.y += p.speed.y;</p> <p>if(p.remaining_life < 0 || p.radius < 0)
{
particles[i] = new particle();
}
}
}</p> <p>setInterval(draw, 86);
}
</script>
</body>
</html>
相關(guān)文章
- 這篇文章主要給大家介紹了利用css如何實(shí)現(xiàn)浮雕的效果,文中給出了詳細(xì)的示例代碼和解釋,相信對(duì)大家有一定的參考價(jià)值,感興趣的朋友們下面來一起看看吧。2017-02-12
- 這篇文章主要為大家詳細(xì)介紹了純CSS3繪制打火機(jī)動(dòng)畫火焰效果的相關(guān)資料,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2016-07-18
- 字體是視覺元素成功的重要因素之一,在網(wǎng)頁設(shè)計(jì)圖形設(shè)計(jì)中扮演者關(guān)鍵角色。字體大寶庫系列文章今天給大家?guī)淼氖?6款燃燒的火焰效果英文字體,可以免費(fèi)下載使用,需要的朋2013-01-06
CSS3實(shí)現(xiàn)文字浮雕效果,鏤刻效果,火焰文字
這篇文章主要介紹了CSS3實(shí)現(xiàn)文字浮雕效果,鏤刻效果,火焰文字,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編2020-02-27