-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathtest-cell-decorators.html
More file actions
34 lines (30 loc) · 1.05 KB
/
test-cell-decorators.html
File metadata and controls
34 lines (30 loc) · 1.05 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, interactive-widget=resizes-content"/>
<link rel="stylesheet" type="text/css" href="exolve-m.css?v1.69"/>
<script src="exolve-m.js?v1.69"></script>
<title>Test-Cell-Decorators</title>
</head>
<body>
<script>
createExolve(`
exolve-begin
exolve-width: 3
exolve-height: 3
exolve-cell-decorator: non-clickable <line stroke="red" x1="20" y1="27" x2="25" y2="27">
exolve-cell-decorator: <line stroke="blue" x1="20" y1="27" x2="25" y2="27">
exolve-cell-decorator: <circle cx="15.5" cy="4" r="2.5">
exolve-cell-decorator: non-clickable <line stroke="$1" stroke-width="4" x1="0" y1="15" x2="0" y2="-45"> # long line
exolve-cell-decorator: <text x="$1" y="10.5" style="font-size:6.2px;color:purple">$2$0</text>
exolve-grid:
0{5:6:YES?} 0{4:green} 0{5:12.5:No!}
0 0{1,2} 0{1,2,3}
0{4:red} 0{1,3} 0{2,4:blue}
exolve-option: ignore-unclued
exolve-end
`);
</script>
</body>
</html>