我的博客 http://taoquns.com/paper/59ba...html
- canvas 封裝方法,增長點擊,移動效果,配置顏色線條粗細功能
- 在線查看 http://jsrun.net/3PkKp/edit
- 傳到github了,之後也許用得着,地址: https://github.com/Taoqun/can...
先上效果:git
點擊效果:github
- 默認生成隨機大小的100個小點點
- 鼠標移動,修改鼠標小點點的xy軸座標
- 鼠標點擊,增長隨機大小小點點
- 增長離屏canvas 優化性能
- 修復鼠標移出,去除鼠標效果的小點點
- 增長暫停開始功能
index.htmlcanvas
<canvas id="root" width="1000" height="500"></canvas>
index.jsdom
var root = document.querySelector("#root") var a = new CanvasAnimate(root,{length:80,clicked:true,moveon:true}) a.Run() // 開始運行 a.pause() // 暫停
CanvasAnimate.js性能
說明,配置參數優化
length
Number
生成的小點點數量RoundColor
String
小點點顏色LineColor
String
線條顏色LineWeight
Number
線條寬度clicked
Boolean
鼠標點擊是否增長鏈接小點點moveon
Boolean
鼠標移動是否增長鏈接效果方法動畫
function CanvasAnimate(Dom,options){ options = options || {} this.Element = Dom this.cvs = Dom.getContext("2d") this.off_cvs = document.createElement("canvas") this.off_cvs.width = Dom.width this.off_cvs.height = Dom.height this.Dom = this.off_cvs.getContext("2d") this.width = Dom.width this.height = Dom.height this.length = options.length || 100 this.RoundColor = options.RoundColor || "#999" this.RoundDiameter = options.RoundDiameter || 2 this.LineColor = options.LineColor || "#ccc" this.LineWeight = options.LineWeight || 1 this.clicked = options.clicked || false this.moveon = options.moveon || false this.list = [] this.paused = true } CanvasAnimate.prototype.Run = function(){ if( this.clicked ){ this.Element.addEventListener( "click",this.Clicked.bind(this) ) } if( this.moveon ){ this.Element.addEventListener( "mousemove",this.moveXY.bind(this) ) this.Element.addEventListener( "mouseout",this.moveoutXY.bind(this) ) } this.Draw( this.getLength() ) } CanvasAnimate.prototype.getLength=function(){ let arr = [] for(let i=0;i< this.length ;i++){ let obj = {} obj.x = parseInt( Math.random() * this.width ) obj.y = parseInt( Math.random() * this.height ) obj.r = parseInt( Math.random()*10 ) obj.controlX = parseInt( Math.random()*10 ) > 5 ? "left":"right" obj.controlY = parseInt( Math.random()*10 ) > 5 ? "bottom":"top" arr.push(obj) } return arr } CanvasAnimate.prototype.Draw = function(list){ let new_arr = [] let line_arr = [] list.map((item,index)=>{ let xy = this.ControlXY(item) let obj = this.ControlRound(xy) new_arr.push( obj ) }); new_arr.map((item1,index1)=>{ new_arr.map((item2,index2)=>{ if(item1 !== item2){ let x = item1.x - item2.x let y = item1.y - item2.y if( Math.abs(x)< 100 && Math.abs(y)<100 ){ let obj = { x1:item1.x, y1:item1.y, x2:item2.x, y2:item2.y, } line_arr.push(obj) } } }) }) this.drawLine(line_arr) new_arr.map((item)=>{ this.drawRound(item) }) this.list = new_arr this.cvs.drawImage(this.off_cvs,0,0,this.width,this.height) setTimeout(()=>{ if(this.paused){ this.next() } },50) } CanvasAnimate.prototype.next = function(){ this.cvs.clearRect( 0,0,this.width,this.height ) this.Dom.clearRect( 0,0,this.width,this.height ) this.Draw( this.list ) } CanvasAnimate.prototype.drawRound = function(obj){ let {x,y,r} = obj this.Dom.beginPath() this.Dom.arc( x,y,r, 0, 2*Math.PI ) this.Dom.fillStyle = this.RoundColor this.Dom.fill() this.Dom.closePath() } CanvasAnimate.prototype.drawLine = function(list){ list.map( (item)=>{ this.Dom.beginPath() this.Dom.moveTo( item.x1,item.y1 ) this.Dom.lineTo( item.x2,item.y2 ) this.Dom.lineWidth = this.LineWeight this.Dom.strokeStyle = this.LineColor this.Dom.stroke() this.Dom.closePath() }) } CanvasAnimate.prototype.ControlXY = function(obj){ if(obj.x >= (this.width - obj.r) ){ obj.controlX = 'left' }else if( obj.x <= parseInt(obj.r/2) ){ obj.controlX = "right" } if( obj.y >= (this.height - obj.r) ){ obj.controlY = "bottom" }else if( obj.y <= parseInt(obj.r/2) ){ obj.controlY = "top" } return obj } CanvasAnimate.prototype.ControlRound = function(obj){ switch(obj.controlX){ case "right": obj.x++; break; case "left": obj.x--; break; } switch(obj.controlY){ case "top": obj.y++; break; case "bottom": obj.y--; break; } return obj } CanvasAnimate.prototype.Clicked = function(event){ let obj = {} obj.x = event.clientX obj.y = event.clientY obj.r = parseInt( Math.random()*10 ) obj.controlX = parseInt( Math.random()*10 ) > 5 ? 'left' :'right' obj.controlY = parseInt( Math.random()*10 ) > 5 ? 'bottom' :'top' this.list.push(obj) } CanvasAnimate.prototype.moveXY = function(event){ let obj = {} obj.x = event.clientX obj.y = event.clientY obj.r = 0 obj.move = true if( this.list[0]["move"] ){ this.list[0]["x"] = obj.x this.list[0]["y"] = obj.y this.list[0]["r"] = 1 }else{ this.list.unshift(obj) } } CanvasAnimate.prototype.moveoutXY = function(event){ this.list.shift() } CanvasAnimate.prototype.pause = function(){ this.paused = !this.paused if( this.paused){ this.Draw(this.list) } }