Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
webbind:start [2025/04/04 08:11] optrix |
webbind:start [2025/04/06 22:18] (current) optrix |
||
---|---|---|---|
Line 4: | Line 4: | ||
Although its far less flexible than solutions built with the full Javascript API and tools such as D3.js, it provides a minimal-effort way to bring live data to static pages. | Although its far less flexible than solutions built with the full Javascript API and tools such as D3.js, it provides a minimal-effort way to bring live data to static pages. | ||
+ | |||
+ | Fundamentally, | ||
===Adding the Script=== | ===Adding the Script=== | ||
- | You'll need to add a **script** tag in either your HTML or SVG file. | + | You'll need to add a **script** tag in either your HTML or SVG file. We suggest placing the tag at the end of the document in SVG files. |
- | For web pages/HTML files, | + | Note that the syntax is slightly different in SVG files to HTML files - HTML files use the **src** attribute, while SVG files use the **href** attribute. |
<code html> | <code html> | ||
+ | <!-- Import Script for HTML Pages --> | ||
<script src=" | <script src=" | ||
- | </ | ||
- | And for SVG vector images, you'll use... | + | <!-- Import Script |
- | + | < | |
- | <code html> | + | |
- | < | + | |
</ | </ | ||
Line 52: | Line 52: | ||
On the object that you want to respond to live data, add an attribute named **ardibind** followed by the name of the //property you want to change//. For example, **ardibindheight** will alter the //height// property of the object. | On the object that you want to respond to live data, add an attribute named **ardibind** followed by the name of the //property you want to change//. For example, **ardibindheight** will alter the //height// property of the object. | ||
- | The property | + | The value of the // |
===Example Bindings=== | ===Example Bindings=== | ||
Line 77: | Line 77: | ||
<code html> | <code html> | ||
- | < | + | < |
</ | </ | ||