代码拉取完成,页面将自动刷新
class Food{
element:HTMLElement
constructor(){
this.element = document.querySelector('#food')!
}
// 获取食物当前的位置
get X (){
return this.element.offsetLeft
}
get Y (){
return this.element.offsetTop
}
//修改食物的位置
set X (value){
this.element.style.left = value +'px'
}
set Y(value){
this.element.style.top = value +'px'
}
/*
1.食物随机跳变
分析:
- 跳变的范围 0-290
- 并且你要满足是10的倍数,因为设定
都一步为10格,要不然一直吃不到
*/
foodRandom(){
//生成随机数
let left = Math.round(Math.random()*29)*10
let top = Math.round(Math.random()*29)*10
//设置food的位置
this.X = left
this.Y = top
}
}
export default Food
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。