第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定

我的代碼出不來后面的文字呀

我的代碼出不來后面的文字呀

function drawballs(cxt){


? ? var canvas = cxt.canvas;


? ? cxt.clearRect(0,0,canvas.width,canvas.height);


? ? cxt.save();


? ? cxt.beginPath();

? ? cxt.fillStyle = "black";

? ? cxt.fillRect(0,0,canvas.width,canvas.height);


? ? cxt.beginPath();

? ? cxt.arc(balls.x,balls.y,balls.radius,0,2*Math.PI);

? ? cxt.fillStyle = "#fff";

? ? cxt.fill();

? ? cxt.clip();


? ? cxt.font = "bold 150px Arial";

? ? cxt.textAlign = "center";

? ? cxt.textBaseline = "middle";

? ? cxt.fillStyle = "#058";

? ? cxt.fillText("CANVAS",canvas.width / 2,canvas.height / 4);

? ? cxt.fillText("CANVAS",canvas.width / 2,canvas.height / 2);

? ? cxt.fillText("CANVAS",canvas.width / 2,canvas.height*3/4);


? ? cxt.restore();

? ?}


正在回答

2 回答

<script type="text/javascript">

? ?

? ? ? ? var searchLight={x:400,y:400,radius:150,vx:Math.random()*5+10,vy:Math.random()*5+10};

window.onload=function(){

var canvas=document.getElementById('canvas');

var context=canvas.getContext('2d');

? ? ? ? ? ? canvas.width=800;

? ? ? ? ? ? canvas.height=800;


? ? ? ? ? ? setInterval(function(){

? ? ? ? ? ? draw(context);

? ? ? ? ? ? update(canvas.width,canvas.height);

? ? ? ? ? ? },50);


}


function draw(cxt){

var canvas=cxt.canvas;

cxt.clearRect(0,0,canvas.width,canvas.height);

cxt.save();

? ? ? ? ? ? cxt.beginPath();

cxt.fillStyle="#000";

cxt.fillRect(0,0,canvas.width,canvas.height);

cxt.beginPath();

cxt.arc(searchLight.x,searchLight.y,searchLight.radius,0,Math.PI*2);

cxt.fillStyle="#FFF";

cxt.fill();

cxt.clip();


cxt.font="bold 150px Arial";

cxt.textAlign="center";

cxt.textBaseLine="middle";

cxt.fillStyle="#ff6600";

cxt.fillText("CANVAS",canvas.width/2,canvas.width/4);

cxt.fillText("CANVAS",canvas.width/2,canvas.width/2);

cxt.fillText("CANVAS",canvas.width/2,canvas.width*3/4);


cxt.restore();


}


function update(canvasWidth,canvasHeight){

? ?searchLight.x+=searchLight.vx;

? ?searchLight.y+=searchLight.vy;

? if(searchLight.x-searchLight.radius<=0){

? ? ? ? ? ? ? searchLight.vx=-searchLight.vx;

? ? ? ? ? ? ? searchLight.x=searchLight.radius;

? }

? ? if (searchLight.x+searchLight.radius>=canvasWidth) {

? ? ? ? ? ? ? ? ? ?searchLight.vx=-searchLight.vx;

? ? ? ? ? ? ? ? ? ?searchLight.x=canvasWidth-searchLight.radius;

? ? }

? ? if(searchLight.y-searchLight.radius<=0){

? ? searchLight.vy=-searchLight.vy;

? ? searchLight.y=searchLight.radius;

? ? }

? ? if (searchLight.y+searchLight.radius>=canvasHeight) {

? ? ? ? ? ? ? ? ? ?searchLight.vy=-searchLight.vy;

? ? ? ? ? ? ? ? ? ?searchLight.y=canvasHeight-searchLight.radius;

? ? }


}


</script>

我把完整的給你,你自己對(duì)下哪里不同。

0 回復(fù) 有任何疑惑可以回復(fù)我~
#1

JEFT 提問者

非常感謝!
2016-10-24 回復(fù) 有任何疑惑可以回復(fù)我~
#2

JEFT 提問者

你的也顯示不出來。。。
2016-10-24 回復(fù) 有任何疑惑可以回復(fù)我~
#3

就叫毛毛怎么了 回復(fù) JEFT 提問者

在cxt.clip()上面加一對(duì)cxt.save() 和 cxt.restore()就能正常顯示文字了
2017-01-11 回復(fù) 有任何疑惑可以回復(fù)我~

那就不知道了,我的可以

0 回復(fù) 有任何疑惑可以回復(fù)我~

舉報(bào)

0/150
提交
取消

我的代碼出不來后面的文字呀

我要回答 關(guān)注問題
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)