分类:JS
2020
09-24
使用canvas画出文字就好啦functiongen_text_img(size,s){letcolors=["rgb(239,150,26)",'rgb(255,58,201)',"rgb(111,75,255)","rgb(36,174,34)","rgb(80,80,80)"];letcvs=document.createElement("canvas");cvs.setAttribute('width',size[0]);cvs.setAttribute('height',size[1]);letctx=cvs.getContext("2d");ctx.fillStyle=colors[Math.floor(Math.random()*(colors.length))];ctx.fillRect(0,0,...
继续阅读 >
2020
09-24
2020
09-24
本文实例讲述了js找出5个数中最大的一个数和倒数第二大的数实现方法。分享给大家供大家参考,具体如下:最大的一个数:方法1:<script>varmax=Math.max(1,2,3,4,5,2,8);console.log(max)//5//如果这5个数是数组可以用apply方法varmax1=Math.max.apply(this,[1,2,3,4,5,2,8]);console.log(max1);</script>方法2:<script>varmax2=[1,6,3,5,8,10]letmax3=max2.sort(function(a,b){returna-b;})console.log(max3[max3.length...
继续阅读 >