summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorGeorge Halkiadakis <gchalkiadakis@sklavenitis.co.gr>2024-11-24 23:45:38 +0200
committerGeorge Halkiadakis <gchalkiadakis@sklavenitis.co.gr>2024-11-24 23:45:38 +0200
commitaa66a977a2dd63bb3b6255a018bbfe720b4ce2b4 (patch)
tree30d9863e37c58a7337f4042f6ec1634175d60b14 /README.md
parent3d39ede6aa1d4e306ce44b816e3c082e4570abc7 (diff)
downloadslidetray-aa66a977a2dd63bb3b6255a018bbfe720b4ce2b4.tar.gz
slidetray-aa66a977a2dd63bb3b6255a018bbfe720b4ce2b4.tar.bz2
slidetray-aa66a977a2dd63bb3b6255a018bbfe720b4ce2b4.zip
implement badic presentation builder function
Diffstat (limited to 'README.md')
-rw-r--r--README.md12
1 files changed, 10 insertions, 2 deletions
diff --git a/README.md b/README.md
index fde33fc..1253156 100644
--- a/README.md
+++ b/README.md
@@ -31,8 +31,8 @@ let presentation = {
{
text: `utf8 str`
style: `text.css_block, position absolute%`,
- link: `str.url`,
- hover: `text.css_block`
+ link: [ `array.css_blocks` ] /**/
+ hover:
},
/*
... */
@@ -42,6 +42,14 @@ let presentation = {
... */
]
}
+
+
+// ** example
+// style: [
+// '{ top: 15px; background: #333; }',
+// 'a { color: #fff; }
+// 'a:hover { color: red; }
+// ]
```