Game Gospel of Cocos Creator Front-end Development

Because of working reasons, I have been doing some things with Cocos Creator recently. Personally, it can be said that Cocos Creator is the game gospel of front-end developers. Front-end developers can use their front-end knowledge + Cocos Creator to customize a game of their own.Just used Cocos Creator for more than a month, I have sorted out ...

Posted by qing on Sun, 30 Jun 2019 22:32:47 +0200

Research on Swift Object Memory Model (I)

This article is from the Tencent Bugly Public Number (weixin Bugly). Please do not reproduce it without the author's consent. The original address is: https://mp.weixin.qq.com/s/zIkB9KnAt1YPWGOOwyqY3Q Author: Wang Zhenyu > HandyJSON is one of Swift's open source libraries for processing JSON data, similar to JOSNModel, which can directly con ...

Posted by esas_nefret on Sun, 30 Jun 2019 20:38:44 +0200

mmGrid Tabular Style Data Processing Plugin Based on jQuery

From: http://www.uedsc.com/mmgrid.html http://blog.sina.com.cn/s/blog_a94593820102vzw2.html mmGrid is a plug-in for jQuery to implement a style library for tables.Support includes sorting, Ajax, width locking, column hiding, locking, nowrap, multiple selection, selection, and paging. It also works with Bootstrap to make it look better and mor ...

Posted by wickning1 on Sun, 30 Jun 2019 18:41:44 +0200

vue.js dynamic data binding learning

For the dynamic data binding of vue.js, after reading the source code and blog explanations repeatedly, we can finally understand its implementation, and share the learning results, which is also a record. Full code GitHub address: https://github.com/hanrenguang/Dynamic-data-binding . You can also read this article at README in the warehouse. ...

Posted by mark s on Sat, 29 Jun 2019 23:23:42 +0200

How to Judge Data Type Accurately in JS

In my first article, I introduced the major types of JS and used typeof for output viewing. I also mentioned that each function has its own internal attribute [[class]. This class refers to the internal classification of js. This class roughly includes two types: data type and constructor. Introduction to JavaScript Types We talked about sever ...

Posted by uncleronin on Sat, 29 Jun 2019 22:59:15 +0200

Teach you how to customize AlertView

Pictures come from the Internet Preface: The alertView interface of the system is a little rigid, and the animation is a little single. In short, with the development of business, the alertView of the system has been difficult to meet our needs, so it is necessary to customize it. This article introduces how to customize alertView. After read ...

Posted by jib0 on Sat, 29 Jun 2019 21:52:35 +0200

Using javascript to generate two-dimensional code images of the current blog address

Previous remarks A good blog post was found on the computer and wanted to be accessed on the mobile phone. At this point, you have to open the mobile browser to enter long ones. URL Address is OK. It's very inconvenient. If the blog title is followed by a small picture, click on the picture, a two-dimensional code of the big picture appears, a ...

Posted by Fahid on Sat, 29 Jun 2019 19:33:02 +0200

DOM programming from beginnings to forgetting

Document Object Model (DOM) uses the API defined by W3C (Application Program Interface) to manipulate HTML documents (not limited to HTML, but also XHTML, XML, etc.) so that users can interact with pages. It uses object representation to represent the corresponding document structure and its contents. By using the API (Application Program Int ...

Posted by rmt123 on Sat, 29 Jun 2019 04:06:31 +0200

ajax implements JSONP across domains

A major limitation of AJAX is that cross-domain requests are not allowed. But by using JSONP. JSONP is a script tag injection method. It can refer to js scripts of cross-domain URL s, but it needs to provide a callback function (which must be on your own page), so you can handle the results yourself. What is cross-domain Simply put, for securit ...

Posted by mband2000 on Sat, 29 Jun 2019 01:09:42 +0200

Android EditText responds to click events such as drawable right

Preface In the input box EditText, we often add icons such as deleting X, drop-down arrows to get better user experience and needs. If on the right side, we often set the drawableRight attribute to achieve, then how do these icons respond to click events? Here's a brief record! Method First of all, we need to inherit AppCompat EditText an ...

Posted by JH5 on Sat, 29 Jun 2019 00:53:27 +0200