Cocos2d-js02_实现UI流程和场景跳转

前端之家收集整理的这篇文章主要介绍了Cocos2d-js02_实现UI流程和场景跳转前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

Cocos2d-js02_实现UI流程和场景跳转

1、菜单场景代码

  1. /** * Created by chaoge on 15/6/19. */ var MenuLayer = cc.Layer.extend({
  2. sprite:null,helloLabel:null,size:null,ctor:function () {
  3. this._super();
  4.  
  5. size = cc.winSize;
  6.  
  7. //开始按钮 var start = new cc.MenuItemImage(
  8. res.start,res.start,function () {
  9. cc.log("Menu is clicked!");
  10. cc.director.runScene(new GameScene());
  11.  
  12. },this);
  13. start.attr({
  14. x: size.width/2,y: size.height/2-120,anchorX: 0.5,anchorY: 0.5
  15. });
  16.  
  17. //关于按钮 var about = new cc.MenuItemImage(
  18. res.about,res.about,function () {
  19. cc.log("Menu is clicked!");
  20. cc.director.runScene(new AboutGame());
  21.  
  22. },this);
  23. about.attr({
  24. x: size.width/2,y: size.height/2-280,anchorY: 0.5
  25. });
  26.  
  27. var menu = new cc.Menu(start,about);
  28. menu.x = 0;
  29. menu.y = 0;
  30. this.addChild(menu,1);
  31.  
  32.  
  33. //滚动菜单 helloLabel = new cc.LabelTTF("看谁最长","Arial",38);
  34. // position the label on the center of the screen helloLabel.x = size.width / 2;
  35. helloLabel.y = size.height-100;
  36. // add the label as a child to this layer this.addChild(helloLabel,5);
  37.  
  38. // add "HelloWorld" splash screen" this.sprite = new cc.Sprite(res.zhuye);
  39. this.sprite.attr({
  40. x: size.width / 2,y: size.height / 2
  41. });
  42. this.addChild(this.sprite,0);
  43.  
  44. this.schedule(this.LabelMove,0.2);
  45. },LabelMove : function(){
  46. helloLabel.setPositionX(helloLabel.getPositionX()-10);
  47. if(helloLabel.getPositionX() <= -50){
  48. helloLabel.setPositionX(size.width);
  49. }
  50.  
  51. }
  52. });
  53. var MenuGame = cc.Scene.extend({
  54. onEnter:function () {
  55. this._super();
  56. var layer = new MenuLayer();
  57. this.addChild(layer);
  58. }
  59. });
  1.  

}

2、关于界面的代码,实现网页链接AboutScene.js:

var labjiumiao = new cc.LabelTTF("9秒课堂", 38);
var ketang = new cc.MenuItemLabel(labjiumiao,function(){
window.location.href = "http://www.9miaoketang.com";
});
ketang.setPosition(cc.p(size.width/2,size.height-200));

var h5kaifa = new cc.LabelTTF("COCOS2D-HTML5 游戏开发", 38);
var H5 = new cc.MenuItemLabel(h5kaifa,function(){
window.location.href = "http://h5.9miao.com";
});
H5.setPosition(cc.p(size.width/2,size.height/2));


var menu = new cc.Menu(ketang,H5);
menu.x = 0;
menu.y = 0;
this.addChild(menu,1);



视频地址:http://www.9miaoketang.com/course/37

课程讨论帖地址:http://www.9miao.com/thread-64587-1-1.html

源码地址:https://store.cocos.com/stuff/show/128289.html

QQ交流群:83459374

后期也会把该源码传在群里面去,欢迎大家加入讨论!

猜你在找的Cocos2d-x相关文章