`
alanyuen
  • 浏览: 2204 次
最近访客 更多访客>>
社区版块
存档分类
最新评论
文章列表

html5 canvas例子

    博客分类:
  • web
<!DOCTYPE HTML> <html> <head> <meta http-equiv="content-type" content="text/html;charset=utf-8"/> <title>HTML5</title> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js& ...

JavaScript自定義對象

    博客分类:
  • web
<script type="text/javascript"> function Person() { this.name='undefined'; this.getname=function() { return "I am " + this.name; }; this.setname=function(name) { this.name=name; }; } person1 = new Person(); person1.setname('Alan'); alert(person1.ge ...

Thunk技術C++ CallBack

    博客分类:
  • C++
// callbackThunk.cpp : Defines the entry point for the console application. // #include "stdio.h" #include "stdlib.h" class A; typedef unsigned long DWORD; typedef unsigned char BYTE; typedef void (*FuncA)(int a); typedef void (A::*AFuncB)(int a); typedef void (__stdcall ...
Global site tag (gtag.js) - Google Analytics