1 Star 0 Fork 0

xiyg/Typescript

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Food.ts 921 Bytes
一键复制 编辑 原始数据 按行查看 历史
xiyg 提交于 2024-09-20 12:07 . init
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
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/xiyg_admin/typescript.git
[email protected]:xiyg_admin/typescript.git
xiyg_admin
typescript
Typescript
master

搜索帮助