-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathadd-widget.html
64 lines (58 loc) · 1.62 KB
/
add-widget.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>tinyjs-plugin-transformable Demo</title>
<meta content="yes" name="apple-mobile-web-app-capable"/>
<meta content="yes" name="apple-touch-fullscreen"/>
<meta content="telephone=no,email=no" name="format-detection"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no"/>
<style>
html, body, p, div {margin:0;padding:0;}
</style>
</head>
<body>
<script src="https://gw.alipayobjects.com/os/lib/tinyjs/tiny/1.5.0/tiny.js"></script>
<script src="../index.debug.js"></script>
<script type="text/javascript">
// 新建 App
var app = new Tiny.Application({
dpi: 2,
width: 500,
height: 500,
fixSize: true,
showFPS: true,
renderOptions: {
antialias: true,
backgroundColor: 0x2a3145 // 画布背景色
}
});
var container = new Tiny.Container();
var loader = new Tiny.loaders.Loader();
loader.add({
name: 'logo',
url: 'https://gw.alipayobjects.com/as/g/tiny/resources/1.0.0/images/logo.png',
}).load(function() {
var sprite = Tiny.Sprite.fromImage('logo');
var ta = new Tiny.Transformable(sprite, {
flipx: false,
flipy: false,
});
ta.addWidget(
'custom',
'https://gw.alipayobjects.com/as/g/tiny/resources/1.0.0/images/heart.png',
[1, -1],
{
onTouchStart: function(e) {
e.stopPropagation();
console.log('custom start');
}
}
);
ta.setPosition(Tiny.WIN_SIZE.width / 2, Tiny.WIN_SIZE.height / 2);
container.addChild(ta);
});
app.run(container);
</script>
</body>
</html>