Giter VIP home page Giter VIP logo

cocos2d-jquery's Introduction

cocos2d-jquery

Now Use Cocos2dx Like JQuery way :)

现在你可以用使用 jquery来方式来操作 cocos2dx~

###Demo看这里: http://wshxbqq.sinaapp.com/static/cocosjq/html5/index.html

同时支持 HTML5jsb

image ##安装方法: 引用 release/cocos.jquery.min.js 到你的项目即可 ##如何使用:

1.使用 cocos-jquery 的 selector

说明:

cocos-jquery 的 选择器分为三种

######一种是 name 选择器 使用 #开头 ######一种是 tag选择器 使用 .开头 ######一种是 class选择器 开头没有特殊字符 注意,在class选择器目前只能在H5环境下使用 ####举例: 注:这里是支持正则的

$("#Panel_Color #Button\w+");
$("#Panel_Color #Button.*");

//下面该选择器表示查找 nodeName 等于Panel_Color 的元素的里面的nodeName等于Button_1的元素
$("#Panel_Color #Button_1");
//可以使用正则
$("#Panel_Color #Button_[0-9]");
//或者也可以这样.
$("#Panel_Color").find("#Button_1");
$("#Panel_Color").eq(0);
$("#Panel_Color").first();
$("#Panel_Color").last();

//下面该选择器表示查找tag为112的元素
$(".112");

//下面该选择器表示查找 nodeName 等于Panel_Color 的元素的里面的所有的Sprite (此种选择器只支持H5环境)
$("#Panel_Color Sprite");

2.使用 cocos-jquery 的 事件绑定

//一般事件绑定, `touchstart touchend touchmove`
$("#Button_Event").bind("touchstart", function (item) {
  console.log("touchstart  triggered");
}).bind("touchend", function (item) {
    console.log("touchend  triggered");
});

//使用 promise 方式
$("#Button_Event").click(function(){
  console.log("click");
});

$("#Button_Event").touchend(function(){
  console.log("click");
});

3.使用 ajax

####这里其实是是对cc.loader.getXMLHttpRequest 的封装,所以在jsb下一样可以发出请求.

 $.get("index.html", function (data) {
    console.log(data);
});
$.post("index.html", function (data) {
    console.log(data);
});

4.动画.

####目前暂 仅支持 {x,y}的平移动画 以后会扩充

var button = $("#Panel_Color #Button_Animate");
var raw = button[0].getPosition();
button.animate({ x: 0, y: 0 }, 2, function () {
    button.animate({ x: raw.x, y: raw.y }, 2, function () {
    });

});

5.工具

var buttons = $("#Panel_Color #Button_.*");
//反射call ,其实等于 buttons 中每一个元素 都执行btn.setColor(args)
buttons.call("setColor", cc.color(255 * Math.random(), 255 * Math.random(), 255 * Math.random()));

buttons.each(function (n, i) {
    cc.log(i);
});

6.css

新增$.fn.addClass方法 可以将预定义好的动画 已一种类似css的格式写入 res/ui.css 中:

比如:

.animate1{
  x:150,
  y:200,
  repet:3;
    action:moveBy(1,cc.p(100,100))+rotateBy(1,50),moveBy(1,cc.p(-100,-100))+rotateBy(1,-50);
}

就定义了一个类似css class的状态, 举例来讲 $("#node").addClass("animate1"); 效果近似为下述代码:

  node.x=150;
  node.y=200;
  var a1 = cc.moveBy(1, cc.p(100, 100));
  var a2 = cc.rotateBy(1, 50);
  var sp = cc.spawn(a1, a2);
  
  var a3 = cc.moveBy(1, cc.p(-100, -100));
  var a4 = cc.rotateBy(1, -50);
  var sp1 = cc.spawn(a3, a4);
  
  var seq = cc.sequence(sp,sp1);
  
  node.runAction(seq)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.