cocos2d-js webview

前端之家收集整理的这篇文章主要介绍了cocos2d-js webview前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
var webView = new ccui.WebView();
webView.setPosition(cc.p(this._actView.getContentSize().width/2,this._actView.getContentSize().height/2 -20));
webView.setContentSize(cc.size(this._actView.getContentSize().width -150,this._actView.getContentSize().height- 150));
cc.log("this._actView.getContentSize().width/2" + this._actView.getContentSize().width/2);
cc.log("this._actView.getContentSize().height/2" + this._actView.getContentSize().height/2);
webView.loadURL("http://www.baidu.cn/");
webView.setScalesPageToFit(true);
this._actView.addChild(webView);
原文链接:https://www.f2er.com/cocos2dx/339780.html

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