|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
没有人会喜欢和见异思迁的人交朋友,因为这种人太不安分,太不可靠,因此,你必须要强迫自己完成自己的目标,哪怕可能会很难受,也得坚持,毅力就是这么锻炼出来的。- /**_survey失掉一个投票的圆饼图*@accesspublic暗示函数对外公然*@param$_agree批准票数*@param$_disagree否决票数*return一张统计圆饼图**/function_vote($_agree,$_disagree){//处置参数if($_agree==0&&$_disagree==0){$_vote=270;}if($_agree==0&&$_disagree!=0){$_vote=91;}if($_agree!=0&&$_disagree==0){$_vote=89;}if($_agree!=0&&$_disagree!=0){$_vote=intval(360*($_agree/($_agree+$_disagree))+90);}//创立画布$_img=imagecreatetruecolor(150,100);//添补通明背景imagealphablending($_img,false);imagesavealpha($_img,true);$white=imagecolorallocatealpha($_img,255,255,255,127);imagefill($_img,0,0,$white);//创立色彩$_green=imagecolorallocate($_img,180,210,52);$_blue=imagecolorallocate($_img,83,201,237);$_gary=imagecolorallocate($_img,192,192,192);$_green1=imagecolorallocate($_img,149,178,36);$_blue1=imagecolorallocate($_img,41,160,193);$_gary1=imagecolorallocate($_img,144,144,144);for($i=60;$i>=50;$i--){imagefilledarc($_img,100,$i,100,50,90,$_vote,$_blue1,IMG_ARC_PIE);imagefilledarc($_img,100,$i,100,50,$_vote,90,$_green1,IMG_ARC_PIE);}imagefilledarc($_img,100,$i,100,50,90,$_vote,$_blue,IMG_ARC_PIE);imagefilledarc($_img,100,$i,100,50,$_vote,90,$_green,IMG_ARC_PIE);header("content-type:image/png");imagepng($_img);imagedestroy($_img);}
复制代码
培训的第一阶段,学习的是HTML/CSS/JavaScript基础。 |
|