heart.js 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. $(function(){
  2. var canvas = document.getElementById( 'canvas' ),
  3. context = canvas.getContext( '2d' );
  4. var canvasWidth = window.innerWidth;
  5. var canvasHeight = window.innerHeight;
  6. canvas.width = canvasWidth;
  7. canvas.height = canvasHeight;
  8. var x = canvasWidth*.5;
  9. var y = canvasHeight*0.12;
  10. var particle;
  11. var time;
  12. var particles = [];
  13. canvas.addEventListener("touchend",function(event){
  14. clearInterval(time);
  15. particle = new Particle(x, y);
  16. particle.xVel = Math.random();
  17. if(particles.length<12){
  18. particles.push(particle); //加入数组
  19. }
  20. time = setInterval(loop, 30); //20刷新一次
  21. })
  22. // canvas.onclick = function(e){
  23. // clearInterval(time);
  24. // particle = new Particle(x, y);
  25. // particle.xVel = Math.random();
  26. // if(particles.length<12){
  27. // particles.push(particle); //加入数组
  28. // }
  29. // time = setInterval(loop, 30); //20刷新一次
  30. // }
  31. //
  32. var particles = [];
  33. function loop(){
  34. // 清除canvas中的内容
  35. context.clearRect( 0, 0, canvasWidth, canvasHeight);
  36. context.fillStyle = "rgba(0,0,0,0)";
  37. context.fillRect(0,0, canvasWidth, canvasHeight);
  38. // 绘制数组中的每一个粒子
  39. for (i=0; i<particles.length; i++) {
  40. if (particles[i].yPos >= canvasHeight){ //保留半径大于0的粒子
  41. particles.shift();
  42. if( particles.length == 0){
  43. //console.log("stop"+particles.length);
  44. clearInterval(time);
  45. context.clearRect( 0, 0, canvasWidth, canvasHeight);
  46. }
  47. // console.log("shift");
  48. }
  49. var particle = particles[i];
  50. if(particle){
  51. particle.draw(context);
  52. particle.update();
  53. }
  54. }
  55. }
  56. //粒子类
  57. function Particle (xPos, yPos) {
  58. this.xPos = xPos;//中心X坐标
  59. this.yPos = yPos; //中心Y坐标
  60. if(Math.round(Math.random()) == 0){
  61. this.yVel =Math.random()*4;
  62. }else{
  63. this.yVel =Math.random()*4;
  64. }
  65. this.rad = 3;//半径初始化
  66. this.xVel = 0;
  67. this.gravity = 0.2;//重力影响
  68. this.radChange = 0.2; //半径变化
  69. this.Xmax = 100; //半径变化
  70. this.opcity = 1;
  71. this.opcityChange = 0.1;
  72. this.counter = rgbaStr();// 颜色
  73. this.draw = function(c) {
  74. //c.fillStyle = this.counter+","+this.opcity+")";
  75. c.fillStyle ="rgba(255,97,1,"+this.opcity+")";
  76. c.strokeStyle="rgba(255,255,255,"+this.opcity+")";
  77. c.lineWidth =0.05;
  78. var r = 0,a = 15,
  79. start = 0,end = 0;
  80. c.beginPath();
  81. for (var q = 0; q < 1000; q++) {
  82. start += Math.PI * 2 / 500;
  83. end = start + Math.PI * 2 / 500;
  84. r = a * Math.sqrt(this.rad/(15 - 16 * Math.sin(start) * Math.sqrt(Math.cos(start) * Math.cos(start))));
  85. c.arc(this.xPos, this.yPos, r, start, end, false);
  86. }
  87. c.fill();
  88. c.stroke();
  89. }
  90. this.update = function(){ //更新自己的方法
  91. this.yVel += this.gravity;
  92. if(this.yPos - y >= 200){
  93. this.opcity -= this.opcityChange;
  94. }
  95. if(Math.round(Math.random()) == 0 ){
  96. this.xVel +=this.gravity;
  97. }else{
  98. this.xVel -= this.gravity;
  99. }
  100. this.yPos += this.yVel;
  101. this.xPos += this.xVel;
  102. if ( this.rad < 10 )
  103. this.rad += this.radChange;
  104. if(this.rad < 0 )
  105. this.rad = 0;
  106. }
  107. }
  108. function rand(min,max){
  109. return min+parseInt((max-min)*Math.random());
  110. }
  111. //随机rgba颜色值
  112. function rgbaStr(){
  113. return "rgba("+rand(100,255)+","+rand(1,200)+","+rand(10,200);
  114. }
  115. })