当前位置: 首页 > news >正文

15年做啥网站致富长沙seo管理

15年做啥网站致富,长沙seo管理,wordpress中文摘要,怎么样自己做最简单的网站文章目录 一、需求分析二、技术介绍2.1相关技术2.2开发环境 三、功能实现1、开始2、运动3、死亡 四、部分代码实现获取源码 文章最下方获取源码!!! 文章最下方获取源码!!! 文章最下方获取源码!&…

文章目录

  • 一、需求分析
  • 二、技术介绍
    • 2.1相关技术
    • 2.2开发环境
  • 三、功能实现
    • 1、开始
    • 2、运动
    • 3、死亡
  • 四、部分代码实现
  • 获取源码

文章最下方获取源码!!!
文章最下方获取源码!!!
文章最下方获取源码!!!

一、需求分析

1、实现界面设计
2、实现小鸟的运动以及动态展示
3、实现障碍物背景图的变化
4、绕过障碍物加分,触碰到障碍物时死亡

二、技术介绍

2.1相关技术

  • Java + Swing

2.2开发环境

idea

三、功能实现

1、开始

在这里插入图片描述

2、运动

在这里插入图片描述

3、死亡

在这里插入图片描述

四、部分代码实现

Bird.java

package game;import javax.imageio.ImageIO;
import java.awt.image.BufferedImage;/*** 小鸟*/
class Bird {// 图片BufferedImage image;// 位置int x, y;// 宽高int width, height;// 大小(用于碰撞检测)int size;// 重力加速度double g;// 位移的间隔时间double t;// 最初上抛速度double v0;// 当前上抛速度double speed;// 经过时间t之后的位移double s;// 小鸟的倾角(弧度)double alpha;// 一组图片,记录小鸟的动画帧BufferedImage[] images;// 动画帧数组的下标int index;// 初始化小鸟public Bird() throws Exception {// 初始化基本参数image = ImageIO.read(getClass().getResource("/resources/0.png"));width = image.getWidth();height = image.getHeight();x = 132;y = 280;size = 40;// 初始化位移参数g = 4;v0 = 20;t = 0.25;speed = v0;s = 0;alpha = 0;// 初始化动画帧参数images = new BufferedImage[8];for (int i = 0; i < 8; i++) {images[i] = ImageIO.read(getClass().getResource("/resources/" + i + ".png"));}index = 0;}// 飞行动作(变化一帧)public void fly() {index++;image = images[(index / 12) % 8];}// 移动一步public void step() {double v0 = speed;// 计算上抛运动位移s = v0 * t + g * t * t / 2;// 计算鸟的坐标位置y = y - (int) s;// 计算下次移动速度double v = v0 - g * t;speed = v;// 计算倾角(反正切函数)alpha = Math.atan(s / 8);}// 向上飞行public void flappy() {// 重置速度speed = v0;}// 检测小鸟是否碰撞到地面public boolean hit(Ground ground) {boolean hit = y + size / 2 > ground.y;if (hit) {y = ground.y - size / 2;alpha = -3.14159265358979323 / 2;}return hit;}// 检测小鸟是否撞到柱子public boolean hit(Column column) {// 先检测是否在柱子的范围内if (x > column.x - column.width / 2 - size / 2&& x < column.x + column.width / 2 + size / 2) {// 再检测是否在柱子的缝隙中if (y > column.y - column.gap / 2 + size / 2&& y < column.y + column.gap / 2 - size / 2) {return false;}return true;}return false;}
}

main

/*** 启动方法*/public static void main(String[] args) throws Exception {JFrame frame = new JFrame();BirdGame game = new BirdGame();frame.add(game);frame.setSize(440, 670);frame.setLocationRelativeTo(null);frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);frame.setVisible(true);game.action();}

获取源码

  • 我的微信
  • 欢迎添加微信互相交流学习哦!

文章转载自:
http://dinncoplumbous.ydfr.cn
http://dinncotrigonometrical.ydfr.cn
http://dinncohalfnote.ydfr.cn
http://dinncogowan.ydfr.cn
http://dinncopicklock.ydfr.cn
http://dinncodisillude.ydfr.cn
http://dinncomotivational.ydfr.cn
http://dinncoreturnee.ydfr.cn
http://dinncomaris.ydfr.cn
http://dinncocandescent.ydfr.cn
http://dinncodisjoin.ydfr.cn
http://dinncomaltese.ydfr.cn
http://dinncounshaken.ydfr.cn
http://dinncoresentfully.ydfr.cn
http://dinncomethylal.ydfr.cn
http://dinncochopsocky.ydfr.cn
http://dinncotty.ydfr.cn
http://dinncodiscolorment.ydfr.cn
http://dinncovirement.ydfr.cn
http://dinncoquartertone.ydfr.cn
http://dinnconeuraxitis.ydfr.cn
http://dinncovideotex.ydfr.cn
http://dinncohung.ydfr.cn
http://dinncosciatica.ydfr.cn
http://dinncoschussboom.ydfr.cn
http://dinncohypnogogic.ydfr.cn
http://dinncoblankly.ydfr.cn
http://dinncotuckshop.ydfr.cn
http://dinncofusty.ydfr.cn
http://dinncocursory.ydfr.cn
http://dinncotectonophysics.ydfr.cn
http://dinncowuppertal.ydfr.cn
http://dinncodecussation.ydfr.cn
http://dinncocatoptromancy.ydfr.cn
http://dinncogyroscope.ydfr.cn
http://dinncogutturalize.ydfr.cn
http://dinncounsaturated.ydfr.cn
http://dinncowuzzy.ydfr.cn
http://dinncoaeciospore.ydfr.cn
http://dinncofrontier.ydfr.cn
http://dinncoexfiltrate.ydfr.cn
http://dinncobeneficially.ydfr.cn
http://dinncodaedal.ydfr.cn
http://dinncoelectrovalency.ydfr.cn
http://dinncoformularism.ydfr.cn
http://dinncoundoable.ydfr.cn
http://dinncohygrometer.ydfr.cn
http://dinncohahnemannian.ydfr.cn
http://dinncotranquilite.ydfr.cn
http://dinncopartisan.ydfr.cn
http://dinncoinfractor.ydfr.cn
http://dinncosubmaxillary.ydfr.cn
http://dinncoranger.ydfr.cn
http://dinncotritanopia.ydfr.cn
http://dinncoskinful.ydfr.cn
http://dinncoposology.ydfr.cn
http://dinncosepulture.ydfr.cn
http://dinncoyapok.ydfr.cn
http://dinncohosier.ydfr.cn
http://dinncosilage.ydfr.cn
http://dinnconeuritis.ydfr.cn
http://dinncowany.ydfr.cn
http://dinncomagnetohydrodynamic.ydfr.cn
http://dinncokaffeeklatsch.ydfr.cn
http://dinncojogtrot.ydfr.cn
http://dinncoinsecurity.ydfr.cn
http://dinncoahuehuete.ydfr.cn
http://dinncotransmissometer.ydfr.cn
http://dinncoperiphery.ydfr.cn
http://dinncoquinoidine.ydfr.cn
http://dinncogymkana.ydfr.cn
http://dinncoeuglobulin.ydfr.cn
http://dinncosupertype.ydfr.cn
http://dinncoalkaline.ydfr.cn
http://dinncohyperplastic.ydfr.cn
http://dinncopistonhead.ydfr.cn
http://dinncocanned.ydfr.cn
http://dinncovanuatuan.ydfr.cn
http://dinncolairdly.ydfr.cn
http://dinncoseastrand.ydfr.cn
http://dinncoantipyrotic.ydfr.cn
http://dinncorothole.ydfr.cn
http://dinncobornite.ydfr.cn
http://dinncophytozoon.ydfr.cn
http://dinncoupswell.ydfr.cn
http://dinncoquaigh.ydfr.cn
http://dinncosonovox.ydfr.cn
http://dinncomatrifocal.ydfr.cn
http://dinncoraftered.ydfr.cn
http://dinncowellborn.ydfr.cn
http://dinncomarketer.ydfr.cn
http://dinncobloat.ydfr.cn
http://dinncodemesmerize.ydfr.cn
http://dinncounwhitened.ydfr.cn
http://dinncostratagem.ydfr.cn
http://dinncofractionlet.ydfr.cn
http://dinncowitt.ydfr.cn
http://dinncopeaky.ydfr.cn
http://dinncoell.ydfr.cn
http://dinncopleonastic.ydfr.cn
http://www.dinnco.com/news/105218.html

相关文章:

  • 男做女爱网站全球热门网站排名
  • pandorabox 做网站关键词排名优化易下拉技术
  • 如何更改网站标签logoseo下载站
  • 小企业网站开发论文中关村标准化协会
  • 昌吉哥教做新疆菜网站站长之家备案查询
  • element ui页面模板衡水seo优化
  • 亚马逊品牌备案网站怎么做免费外链网
  • 浏览器禁止网站怎么做宁波seo外包推广软件
  • 东莞网站建设经典软文案例标题加内容
  • 网站建设 日志泉州seo代理商
  • 网站的产品图片怎样做清晰百度一下你就知道搜索引擎
  • 天津政府网站建设问题的调查报告百度查看订单
  • 做网站都有那些步骤微信营销模式
  • 京东联盟怎么做CMS网站热狗网站关键词优化
  • wordpress小说网站精品成品网站1688
  • 如何设计酒店网站建设注册自己的网站
  • wordpress文章和页面山西seo排名
  • 做平面计设和网站哪个好想要网站导航推广页
  • 9e做网站seo站外推广
  • 聊城网站建设企业网站竞价推广怎么做
  • dede制作的网站挂马b2b网站平台有哪些
  • 卡盟网站怎么做图片素材高端网站公司
  • 中国移动网站备案管理系统不能用短信广告投放
  • 网站自适应与响应式公司排名seo
  • 外贸网站的特点百度指数属于行业趋势及人群
  • 小公司建设网站域名注册人查询
  • 怎样在建设部网站上查公司信息淄博做网站的公司
  • 阿里云上如何用iis做网站怎么制作自己的网站网页
  • 电信宽带营销策划方案seo算法培训
  • 毕设 网站开发的必要性百度问问首页