zoukankan      html  css  js  c++  java
  • canvas绘制多角形小练习

    <!doctype html>
    <html lang="en">
    <head>
    	<meta charset="UTF-8">
    	<title></title>
    	<style>
    		div{padding:20px;}
    	</style>
    </head>
    <body style="overflow:hidden;">
    	<script>
    		var starsAnim = {
    			init:function(){
    				canvas = document.createElement("canvas");
    				ctx = canvas.getContext("2d");
    				W = window.innerWidth;
    				H = window.innerHeight;
    				canvas.width = W;
    				canvas.height = H;
    				document.body.appendChild(canvas);
    				var star = oneStar.init(8,ctx);
    			}
    		}
    		/**
    		 * [oneStar 创建一个多角星]
    		 * @type {Object}
    		 */
    		var oneStar = {
    			init : function(nums,ctx,r,x,y,trangles){
    				this.c = this.getRandColor();  //多角星颜色
    				this.r = r ? r : 50;           //多角星半径
    				this.x = x ? x : this.r/2;     //中心坐标
    				this.y = y ? y : this.r/2;     //中心坐标
    				this.ctx = ctx;
    				this.trangles = trangles ? trangles : 5; //角数。默认是五角星
    				this.stars = [];                         //多角星数据
    				this.drawStars(nums);  //绘制多个多角星
    			},
    			/**
    			 * drawStar 绘制多角星
    			 * @param  {Number} r 半径
    			 * @param  {Number} x 中心坐标
    			 * @param  {Number} y 中心坐标
    			 * @param  {String} c 颜色
    			 */
    			drawStar : function(r, x, y, c){
    				ctx.save();
    				ctx.translate(x,y); //设置一个随机偏移量,避免星星重叠在一起
    				var star = [], item=null, angle = Math.PI/this.trangles;
    				ctx.rotate(-Math.PI/2);  //旋转使星星的开始点朝上
    				for(var i = 0; i < this.trangles*2; i++){
    					if(!(i&1)){//不是奇数的半径是r
    						item = {
    							x : r * Math.cos(angle*i),
    							y : r * Math.sin(angle*i)
    						}
    					}else{//不是奇数的半径是r/2
    						item = {
    							x : 0.5 * r * Math.cos(angle*i),
    							y : 0.5 * r * Math.sin(angle*i)
    						}
    					}
    					star.push(item);
    				}
    				this.stars.push(star);
    				ctx.beginPath();
    				ctx.strokeStyle = c;
    				ctx.lineWidth = 5;
    				ctx.moveTo(star[0].x,star[0].y);
    				for(var i = 1; i<star.length; i++){
    					ctx.lineTo(star[i].x,star[i].y);
    				}
    
    				ctx.closePath();
    				// 绘制吊绳
    				ctx.moveTo(star[0].x,star[0].y);
    				ctx.lineTo(star[0].x+x+y,star[0].y);
    				ctx.stroke();
    				ctx.restore();
    				
    
    			},
    			/**
    			 * drawStars 绘制多角星
    			 * @param  {Number} num 绘制数量
    			 */
    			drawStars : function(num){
    				for(var i = 0; i<num; i++){
    					this.r = ~~(this.getcustomRand(25,60)); //~~表示取整
    					this.x = this.r + this.x + this.getcustomRand(10,180);
    					this.y = this.r + this.getcustomRand(80,200);
    					this.c = this.getRandColor();
    					this.drawStar(this.r, this.x, this.y, this.c);
    					console.log(this.stars);
    					this.stars[i].trans = {
    						r : this.r,
    						x : this.x,
    						y: this.y,
    						c :this.c
    					};
    				}
    			},
    			/**
    			 * getRandColor 获取一个随机颜色
    			 * @return {String} 返回一个rgb颜色字符串
    			 */
    			getRandColor : function(){
    				return "rgb("+(~~(Math.random()*255)) + "," + (~~(Math.random()*255)) +","+(~~(Math.random()*255))+")";
    			},
    			/**
    			 * getcustomRand 获取一个指定范围的随机~~数
    			 * @param  {Number} max 范围右边界
    			 * @param  {Number} min 范围左边界
    			 * @return {Number}     返回随机数
    			 */
    			getcustomRand : function(max,min){
    				return Math.random() * (max-min) + min;
    			}
    		}
    		starsAnim.init();
    	</script>
    </body>
    </html>
    

    +++++++++++预览:+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

  • 相关阅读:
    jQuery表单验证以及将表单序列化为json对象小练习
    判断客户端浏览器是否安装了Flash插件
    css文本超出2行就隐藏并显示省略号
    jquery and js 判断一个元素是否存在
    jquery表单实时验证
    trigger()和triggerHandler()
    IE浏览器下面要实现滤镜(transparent),必须要加filter
    使用javascript判断浏览器类型
    web引入
    前端大纲********
  • 原文地址:https://www.cnblogs.com/youzhuxiaoyao/p/8659149.html
Copyright © 2011-2022 走看看