Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
image create bitmap imgup -data {
#define up_width 16
#define up_height 16
static unsigned char up_bits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00,
0xc0, 0x01, 0xe0, 0x03, 0xf0, 0x07, 0xf8, 0x0f,
0xfc, 0x1f, 0xfe, 0x3f, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
};
}
image create bitmap imgdn -data {
#define down_width 16
#define down_height 16
static unsigned char down_bits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0xfc, 0x7f, 0xf8, 0x3f,
0xf0, 0x1f, 0xe0, 0x0f, 0xc0, 0x07, 0x80, 0x03,
0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
};
}
image create bitmap imgT -data {
#define up_width 16
#define up_height 16
static unsigned char up_bits[] = {
0x00, 0x00,
0x00, 0x00,
0x00, 0x30,
0x00, 0x3c,
0x00, 0x3f,
0xe0, 0x3f,
0xf8, 0x3f,
0xfe, 0x3f,
0xfe, 0x3f,
0xf8, 0x3f,
0xe0, 0x3f,
0x00, 0x3f,
0x00, 0x3c,
0x00, 0x30,
0x00, 0x00,
0x00, 0x00
};
}
image create bitmap imgleft -data {
#define up_width 16
#define up_height 16
static unsigned char up_bits[] = {
0x00, 0x00,
0x00, 0x00,
0x00, 0x00,
0x80, 0x00,
0xc0, 0x00,
0xe0, 0x00,
0xf0, 0x00,
0xf8, 0x00,
0xf8, 0x00,
0xf0, 0x00,
0xe0, 0x00,
0xc0, 0x00,
0x80, 0x00,
0x00, 0x00,
0x00, 0x00,
0x00, 0x00
};
}
pack [button .b -image imgup] -side top
pack [canvas .c -width 500 -height 250]
.c create poly 110 10 110 50 145 30 -fill red