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

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

海葵不出來

JavaScript編譯時(shí)Chrome報(bào)告Uncaught?TypeError:?undefined?is?not?a?function錯(cuò)誤,

正在回答

3 回答

我也有這個(gè)錯(cuò)誤 后來發(fā)現(xiàn) 是我的分號用了中文寫

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

<!DOCTYPE HTML>

<html>

<head>

<meta charset="utf-8">

<title>tinyHeart</title>

<style type="text/css">

body {

padding-top: 10px;

}

.all_bg{

width: 800px;

height: 600px;

margin: 0px auto;

}

#allcanvas{?

position: relative;

width: 800px;

height: 600px;

margin: 0px;

}

#canvas1{

position: absolute;

bottom: 0;

left: 0;

z-index: 1;

}

#canvas2{?

position: absolute;

bottom: 0;

left: 0;

z-index: 0;

}

</style> ??

</head>

<body>

<div class = "all_bg">

<div id="allcanvas">

<canvas id ="canvas1" width ="800" height ="600"></canvas>?

<canvas id ="canvas2" width ="800" height ="600"></canvas>

</div>

</div>

<script type="text/javascript" src = "js/main.js"></script>

<script type="text/javascript" src = "js/commonFunctions.js"></script>

<script type="text/javascript" src = "js/background.js"></script>

<script type="text/javascript" src = "js/ane.js">

</script>

</body>

</html>


var aneObj = function()

{

this.x = [];

this.len = [];

}

aneObj.prototype.num = 50;

aneObj.prototype.init = function()

{

? for (var i = 0; i< this.num; i++)

? {

? this.x[i] = i * 20 + Math.random()*20;//[0,1)

? this.len[i] = 200+Math.random()*50;

? }

}

aneObj.prototype.draw = function()

{

for(var i=0 ;i<this.num; i++)

{

//beginPath,moveto,LineTo,stroke,strokestyle,LineWidth,LineCap,globleAlpha

ctx2.beginPath();

ctx2.moveto(this.x[i],600);

ctx2.lineTo(this.x[i],600 - this.len[i]);

ctx2.lineWidth = 20;

ctx2.lineCap = "round";

ctx2.strokestyle = "purple";

ctx2.stroke();

}


}


var can1;

var can2;


var ctx1;

var ctx2;


var canWidth;

var canHeight;


var lastTime;

var deltaTime;


var bgPic = new Image();

var ane;


document.body.onload = game;/*body 加載完后把game作為所有js腳本的入口*/

function game()

{

init();//console.log("onload");//輸出普通信息

lastTime = Date.now();

deltaTime = 0;

gameloop();

}

?

?function init()

?{ ? ? ??

? ? ? ?//獲得canvas context

? ? ? ?can1 = document.getElementById("canvas1");//fishes,dust,UI,circle

? ? ? ?ctx1 = can1.getContext("2d");//獲得2D場景

? ? ? ?can2 = document.getElementById("canvas2");//background,ane,fruits

? ? ? ?ctx2 = can2.getContext("2d");


? ? ? ?bgPic. src = "./src/background.jpg";

? ? ? ?

? ? ? ?canWidth = can1.width;?

? ? ? ?canHeight = can1.height;


? ? ? ?ane = new aneObj();

? ? ? ?ane.init();


?}

function gameloop()

{

window.requestAnimationFrame(gameloop);//比setInterval,setTimeout(time)更科學(xué)智能計(jì)算?

var now = Date.now();

deltaTime = now - lastTime;

lastTime = now;


drawBackground();

ane.draw();

}?


分別是html,ane,main的

謝謝你哦

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

貼代碼看看 ?可能是沒有在循環(huán)里面調(diào)用吧

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

xiaxiaaichixia 提問者

我把代碼貼出來了
2016-11-25 回復(fù) 有任何疑惑可以回復(fù)我~

舉報(bào)

0/150
提交
取消
HTML5小游戲---愛心魚(上)
  • 參與學(xué)習(xí)       92344    人
  • 解答問題       576    個(gè)

學(xué)做HTML5游戲,輕輕松松帶你上手,適合剛?cè)胧钟螒蜷_發(fā)的同學(xué)

進(jìn)入課程
微信客服

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

幫助反饋 APP下載

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

公眾號

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