-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
help2.html
137 lines (136 loc) · 2.76 KB
/
help2.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<html>
<head>
<link rel="icon"
type="image/png"
href="favicon.png">
<style type="text/css">
#maincanvas {
cursor:crosshair;
}
body {
-webkit-user-select: none; /* webkit (safari, chrome) browsers */
-moz-user-select: none; /* mozilla browsers */
-khtml-user-select: none; /* webkit (konqueror) browsers */
-ms-user-select: none; /* IE10+ */
}
select {
background-color:black;
color:white;
}
canvas {
position:relative;
}
body {
background-color:black;
color: white;
margin-top: 0;
padding-top: 0;
border-top: 0;
}
ul {
list-style-type: none;
overflow:hidden; overflow-y:scroll;
}
input {
background-color: black;
color:white;
font-size: 200%;
text-align: center;
margin-bottom: 5px;
}
input#linkInput {
background-color: black;
color:white;
font-size: 150%;
text-align: center;
margin-bottom: 5px;
padding-bottom:3px;
}
li {
font-size: 150%;
text-align: center;
width:100%;
}
a {
color:white;
}
a.layerItem{
color: white;
background-color: black;
text-decoration: none;
width:100%;
display:block;
}
a.layerItem.selectedItem{
color: black;
background-color: white;
}
img.selected {
border: 2px solid red;
}
li.selected {
cursor:auto;
color:white;
}
a{
white-space:nowrap;
}
div.selected {
height:16px;
width:30px;
border: 2px solid red;
}
div.unselected {
height:16px;
width:30px;
border: 2px solid black;
}
img.radius {
border: 1px solid black;
}
img.selected {
border: 1px solid red;
}
select {
width:100%;
-webkit-appearance: none;
-moz-appearance: none;
}
select::-ms-expand {
display: none;
}
canvas#dropdownthumb {
border:2px solid gray;
background-color:black;
}
</style>
</head>
<body>
<h1>how to</h1>
<p>
<img src="helpimage2.png" style="border:2px gray dashed;">
<p>
<a href="play2.html?p=1226dfda7aa7d63b579627020feebd08">example game</a>
<p>
<h2>editor</h2>
<p>
<b>C</b> : copy current image<br>
<b>V</b> : paste current image<br>
<b>Z</b> : undo<br>
<b>W</b> : go to parent<br>
<b>A</b> : go to <span style="color:red;">left</span> branch<br>
<b>D</b> : go to <span style="color:blue;">left</span> branch<br>
<b>1...4</b> : select colors
<b>5...0</b> : select brush sizes
<b>+</b>/<b>-</b> : increase/decrease brush size
<p>
<h2>player</h2>
<b>F</b> : go fullscreen
<p>
<h2>source code</h2>
<p>
<a href="https://github.com/increpare/flickgame">github</a>
<p>
made by <a href="http://www.increpare.com">increpare</a> [ support my work on <!-- <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=RF7ZTG7FEU7YN&lc=GB&item_name=flickgame&item_number=flickgame%20donation¤cy_code=EUR&bn=PP%2dDonationsBF%3abtn_donate_LG%2egif%3aNonHosted">DONATE</a> / --> <a href="https://www.patreon.com/increpare">patreon</a> ]
</body>
</html>